function inputc(f,t){if(f.value==t)f.value='';}
function inputr(f,t){if(f.value=='')f.value=t;}
function checkContact(){
	cnctform=document.getElementById('contact');
	if (cnctform.name.value == 'Name'){
		alert("Name is Required");
		cnctform.name.select();
		inputc(cnctform.name);
		return;
	}
	if (cnctform.phone.value == "Phone"){
		alert("Phone Number Required");
		cnctform.phone.select();
		inputc(cnctform.phone);
		return;
	}
	if (cnctform.msg.value == "Message"){
		alert("Message is Required");
		cnctform.msg.select();
		inputc(cnctform.msg);
		return;
	}
	document.contact.submit();
}
