	var awmXmlHttp;

	function sendCustomerRequest()
	{
		if (document.getElementById("requestBody").value!="") {
			var eml = document.getElementById("requestEmail").value;
			if (eml=="Enter your email here") { eml="NOEMAILGIVEN@likno.com"; }
			if ((eml=="" || (new RegExp(".*@.*[.].*").test(eml))) && !(new RegExp(" ").test(eml))) {
				awmXmlHttp=awmGetXmlHttpObject();
				awmXmlHttp.onreadystatechange=awmXmlHttpStateChanged;
				awmXmlHttp.open("GET","http://www.likno.com/sendcustomerrequest.php?body="+document.getElementById("requestBody").value+"&email="+eml,true);
				awmXmlHttp.send(null);
				document.getElementById("requestBox").innerHTML="Please wait...";
			} else { alert("Ooops! It seems you mistyped your email.\nPlease make sure you enter a valid email, or just leave the field empty."); }
		} else { alert("Please write something first!"); }
		return false;
	}
	
	function awmGetXmlHttpObject()
	{
		var xmlHttp=null;
		try	{ xmlHttp=new XMLHttpRequest(); }	// Firefox, Opera 8.0+, Safari 
		catch (e) {	// Internet Explorer
			try	{ xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }	// IE 7.0+
			catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }	// IE 6.0
		}
		return xmlHttp;
	}
	
	function awmXmlHttpStateChanged() 
	{ 
		if (awmXmlHttp.readyState==4)
		{ 
			if (awmXmlHttp.status==200 || awmXmlHttp.status==0) {
				document.getElementById("requestBox").innerHTML=awmXmlHttp.responseText;
			} else{
				document.getElementById("requestBox").innerHTML="error occured: " + awmXmlHttp.status;
			}
		}
	}
	
	document.write('<div class="btheader">Customer Requests <\/div>\n');
	document.write('<div id="requestBox" class="btcontent" style="padding: 9px 9px 9px 9px;">\n');
	document.write('<p class="highlightText" style="margin-bottom:10px;">Need a product that is not on our list?<\/p>\n');
	document.write('<form name="form1" method="post" action="" style="margin-bottom:0px;">');
	document.write('<textarea id="requestBody" name="requestBody" rows="5" class="bluetext" style="width:181px; height:70px; margin-bottom:10px;"><\/textarea>\n');
	document.write('<input id="requestEmail" name="requestEmail" type="text" class="bluetext" value="Enter your email here" style="width:181px; margin-bottom:10px; background-color:#FFFFFF; line-height:11px;">\n');
	document.write('<button style="width:181px; vertical-align:middle;" onclick="return sendCustomerRequest();">Send us your suggestions<\/button>\n');
	document.write('<\/form>\n');
	document.write('<\/div>\n');
