image1 = new Image();
image1.src = "images/i1.gif";
image2 = new Image();
image2.src = "images/i1h.gif";
image3 = new Image();
image3.src = "images/i2.gif";
image4 = new Image();
image4.src = "images/i2h.gif";
image5 = new Image();
image5.src = "images/i3.gif";
image6 = new Image();
image6.src = "images/i3h.gif";
image7 = new Image();
image7.src = "images/i4.gif";
image8 = new Image();
image8.src = "images/i4h.gif";
image9 = new Image();
image9.src = "images/i5.gif";
image10 = new Image();
image10.src = "images/i5h.gif";
image11 = new Image();
image11.src = "images/i6.gif";
image12 = new Image();
image12.src = "images/i6h.gif";

function move_in(img_name,img_src) {
document[img_name].src=img_src;
}

function move_out(img_name,img_src) {
document[img_name].src=img_src;
}

function pdate()
{
var t = new Date();
var d = t.getDate();
var m = t.getMonth();
var y = t.getFullYear();
var sup = "th";
if (d == 1 || d == 21 || d ==31)
   {
   sup = "st";
   }
if (d == 2 || d == 22)
   {
   sup = "nd";
   }
if (d == 3 || d == 23)
   {
   sup = "rd";
   }

var month = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");

m = month[m];

d = d + "<SUP>" + sup + "</SUP>" + " " + m + " " + y;

document.write('<SPAN CLASS="small">' + d + "</SPAN>");
}


function random_image()
	{
	total_no = 6;
	var r = Math.round((total_no - 1)*Math.random()) + 1;
	img_code = "<IMG SRC=\"/images/pic" + r + ".jpg\" WIDTH=\"279\" HEIGHT=\"145\" BORDER=\"0\">";
	document.write(img_code);
	}


function testimonials()
	{
	/* Array t holds the testimonials */
	var t = new Array(); 
	/* Array a holds the author name */
	var a = new Array();

	t[0] = "ChoiceMail One is unbelievable! I was on a porn list and am finally free of them.";
	a[0] = "Susan B.";
	t[1] = "You have given me at least an extra hour per day... thank you.";
	a[1] = "Kevin B.";
	t[2] = "My spam has just about totally disappeared... Ease of use, HELP is excellent.";
	a[2] = "Steven G.";
	t[3] = "In my humble opinion, anyone with an inbox should be using your wonderful product!";
	a[3] = "Richard A.";
	t[4] = "Not one piece of junk mail since I purchased and set up ChoiceMail ! Fantastic !";
	a[4] = "Neil S.";
	t[5] = "ChoiceMail is the only product that I have tried, that allowed me to take back my email address....Thanks!";
	a[5] = "Mychal W.";
	t[6] = "I tell them that I don't have that problem since I have ChoiceMail One.";
	a[6] = "Debra B.";
	t[7] = "A bloody good program!";
	a[7] = "Alistair B.";
	t[8] = "I have come to the conclusion that ChoiceMail One is the best so far.";
	a[8] = "Kevin M.";
	t[9] = "after [installing] ChoiceMail One, zero, zilch, zip, not a single piece of spam.";
	a[9] = "Mary M.";
	t[10] = "You have written possibly the best little hunk of software in terms of cost and benefits.";
	a[10] = "Bruce T.";
	t[11] = "I have used several spam filters but the most effective one I have run into is ChoiceMail One.";
	a[11] = "Roger S.";
	t[12] = "ChoiceMail One is the best spam ending product on the market.";
	a[12] = "Bob W.";
	t[13] = "It is one of those little 'wonder-apps' that you come to rely on to make computing life pleasant &amp; productive.";
	a[13] = "Craig S.";
	t[14] = "it’s really a 'no-brainer'... [it] has all of the features I need to effectively filter out all of my junk mail";
	a[14] = "Glen A.";
	t[15] = "I appreciate and recognize efficient, competent service, and that's what your firm delivered.";
	a[15] = "Bob W.";
	t[16] = "I was able to reactivate my favorite email address...";
	a[16] = "William T.";
	t[17] = "I have not had a single piece of spam make it into my mailbox.";
	a[17] = "Catherine D.";
	t[18] = "No spam at all now in my inbox... I LOVE IT!!";
	a[18] = "George O.";

	total_no = t.length;
	var r = Math.round((total_no - 1)*Math.random());
	testimonial_to_print = "<SPAN CLASS=\"testemonialquote\">" + t[r] + "</SPAN><BR><SPAN CLASS=\"testemonialattribution\"> - " + a[r] + "</SPAN>";
	document.write(testimonial_to_print);
	}
