function add_test_data() {
	//document.PaymentForm.prospect_fname.value = "Sparky";
	//document.PaymentForm.prospect_lname.value = "McGee";
	document.PaymentForm.name.value = "Sparky McGee";
	document.PaymentForm.address1.value = "111 Test Dr.";
	document.PaymentForm.city.value = "Rochester";
	document.PaymentForm.state.selectedIndex = 39;
	document.PaymentForm.zip.value = "14620";
	document.PaymentForm.email.value = "webhelp@rochester.edu";
	document.PaymentForm.cardtype.selectedIndex = 2;
	document.PaymentForm.cardnum1.value = "5555";
	document.PaymentForm.cardnum2.value = "5555";
	document.PaymentForm.cardnum3.value = "5555";
	document.PaymentForm.cardnum4.value = "4444";	
	document.PaymentForm.exp_month.selectedIndex = 3;
	document.PaymentForm.exp_year.selectedIndex = 3;
	document.PaymentForm.cvnum.value = "222";
	//document.PaymentForm.totalamount.value = "20.04";
}


<!-- Original:  Robert Bui (astrogate@hotmail.com) -->
	<!-- Web Site:  http://astrogate.virtualave.net -->
	
	<!-- This script and many more are available free online at -->
	<!-- The JavaScript Source!! http://javascript.internet.com -->
	
	<!-- Begin
	var interval = 7; // delay between rotating images (in seconds)
	var random_display = 1; // 0 = no, 1 = yes
	interval *= 1000;
	
	var image_index = 0;
	image_list = new Array();
	image_list[image_index++] = new imageItem("assets/images/2009/header1.jpg");
	image_list[image_index++] = new imageItem("assets/images/2009/header2.jpg");
	image_list[image_index++] = new imageItem("assets/images/2009/header3.jpg");
	image_list[image_index++] = new imageItem("assets/images/2009/header4.jpg");
	image_list[image_index++] = new imageItem("assets/images/2009/header5.jpg");
	image_list[image_index++] = new imageItem("assets/images/2009/header6.jpg");
	image_list[image_index++] = new imageItem("assets/images/2009/header7.jpg");
	image_list[image_index++] = new imageItem("assets/images/2009/header8.jpg");
	image_list[image_index++] = new imageItem("assets/images/2009/header9.jpg");
	
	var number_of_image = image_list.length;
	
	function imageItem(image_location) 
	{
		this.image_item = new Image();
		this.image_item.src = image_location;
	}
	
	function get_ImageItemLocation(imageObj) 
	{
		return(imageObj.image_item.src)
	}
	
	function generate(x, y) 
	{
		var range = y - x + 1;
		return Math.floor(Math.random() * range) + x;
	}

	function getNextImage() 
	{
		if (random_display) 
		{
			image_index = generate(0, number_of_image-1);
		}
		else 
		{
			image_index = (image_index+1) % number_of_image;
		}
		var new_image = get_ImageItemLocation(image_list[image_index]);
		return(new_image);
	}
	
	function rotateImage(place) 
	{
		var new_image = getNextImage();
		document[place].src = new_image;
		var recur_call = "rotateImage('"+place+"')";
		setTimeout(recur_call, interval);
	}
	<!-- End -->
	
	
	function expandSection(id)
	{
		var mySection = document.getElementById(id);
		if(mySection.style.display=="block")
		{
			mySection.style.display="none";
		} 
		else
		{
			mySection.style.display="block";
		} 
	}
	
	
	
	
	