// JavaScript Document
function onReadyState()
{
	var data=null;
	//var root_path='http://localhost/hardingsteel/';
	var root_path='http://www.hardingsteel.com/';
	if (req.readyState==READY_STATE_COMPLETE)
	{
		var xmlDoc = req.responseText; //receives the response text from back page
		var pos=xmlDoc.indexOf('^');
		var len=xmlDoc.length;
		var content=xmlDoc.substring(0,pos);
		var num=xmlDoc.substring(pos+1,len);
		
		if(num==1)
		{
			//alert(content);
			var matchPos1 = content.search("@@@@@@@");
			if(matchPos1 != -1) {
				alert("Your message contains spam, request not posted.");
				document.getElementById('B1').disabled = true;
			} else {
				document.getElementById('B1').disabled = false;
			}
		}
	}
}

