function myEmailListFunc(someNumberComing)
{
		clearThePageFunction();
		myMakeVisibleHiddenFunc('5');	

			myBgDiv = document.getElementById('autismlogo');
			myBgDiv.innerHTML = '';
			myBgDiv.innerHTML = '<img src="images/bg8.jpg" usemap="#bg" border="0" alt="Autism the Musical">';	

	theDiv = document.getElementById('email_form');
	theDiv.innerHTML = '';
	
theDiv.innerHTML = '<form>';
theDiv.innerHTML += '<label title="First Name: " style="position: absolute; left: 0px; top: 20px;width: 100px; height: 15px;">First Name: </label>';
theDiv.innerHTML += '<input type="text" id="first_name"  tabindex="6" style="position: absolute; left: 100px; top: 20px; height: 15px; width: 100px;" /><br />';
theDiv.innerHTML += '<label title="Last Name: " style="position: absolute; left: 0px; top: 38px;width: 100px; height: 15px;">Last Name: </label>';
theDiv.innerHTML += '<input type="text" id="last_name"  tabindex="7" style="position: absolute; left: 100px; top: 38px; width: 100px; height: 15px;" /><br />';
theDiv.innerHTML += '<label title="Email: " style="position: absolute; left: 0px; top: 56px;width: 100px; height: 15px;">Email: </label>';
theDiv.innerHTML += '<input type="text" id="email" tabindex="8" style="position: absolute; left: 100px; top: 56px; width: 100px; height: 15px;" /><br />';
theDiv.innerHTML += '<input type="button"  tabindex="9" onclick="javascript:sendRequestPost2();" value="Click Me" style="position: absolute; left: 0px; top: 85px; width: 100px; height: 25px;" />';
theDiv.innerHTML += '<input type="reset" value="Reset"  tabindex="10" style="position: absolute; left: 100px; top: 85px; width: 100px; height: 25px;" />';
theDiv.innerHTML += '</form>';
var newLeft3 = 130;

		var myResponse = document.getElementById('response');	
if(navigator.appName == 'Microsoft Internet Explorer')
{
/*if (!(is.ie6))
{
	var newLeft3 = 550;
}
else
{
	var newLeft3 = 375;
}*/
	myResponse.style.position = 'absolute';
	myResponse.style.left = newLeft3 + 'px';
	myResponse.style.fontFamily = 'Arial, Helvetica, sans-serif';
	myResponse.style.fontSize = '12px';
	myResponse.style.zIndex = '5';
	myResponse.style.color = '#FFFFFF';
}
else
{
	myResponse.setAttribute('style','position:absolute;left:'+newLeft3+'px; font-family:Arial, Helvetica, sans-serif; font-size: 12px; z-Index: 5; color: #FFFFFF;');
}

		theDiv.style.top = '265px';
		myResponse.style.top = '420px';
}