	//var req = null;
	function ajE(e,s)
	{ 
		req=null
		// code for Mozilla, etc.
		if (window.XMLHttpRequest)
		{
			req=new XMLHttpRequest()
		}
		// code for IE
		else if (window.ActiveXObject)
		{
			req=new ActiveXObject("Microsoft.XMLHTTP")
		}
		if (req!=null)
		{
			req.onreadystatechange=handleResponse
			req.open("GET","/email.php?email="+e+"&x="+s,true)
			req.send(null)
		}
		else
		{
			alert("Your browser does not support XMLHTTP.")
		}
	}
	function handleResponse()
	{

		if(req.readyState == 4)
		{
			if(req.status == 200)
			{
				if(req.responseText=="OK")
				{
					document.getElementById("emailBox").innerHTML = "Thank you for your submission. We'll be in touch shortly with the latest news, trailers and video for KimKSuperstar.com.";
				}
			}
		} 
	} 
