// JavaScript Document
function register()
	{
		missinginfo="";
		if(document.cform.realname.value=="")
		{
			alert("Please Enter Your Email Address");
			cform.realname.focus();
		}
		else if(document.cform.description.value=="")
		{
			alert("Please Enter Description");
			cform.description.focus();
		}
		else if(document.cform.comments.value=="")
		{
			alert("Please Enter Your Comments");
			cform.comments.focus();
		}	
		else
		{
		document.cform.action="library/sendenquiry.php";
		document.cform.submit();
		}
	}

function date()
{
	var today = new Date();
	var month = today.getMonth() + 1;
	var day = today.getDate();
	var year = today.getFullYear();
	var s = "/";
	var y = year.toString();
	var yy = y.substring(2,4);
	document.cform.timestamp.value = month + s + day + s + yy;
	document.cform.timestamp.disabled = true;
}
