	function clrnamef(){
		if(document.thisForm.Name.value=="Name")
			document.thisForm.Name.value="";	
		}
		
		function clrnameb(){
		if(document.thisForm.Name.value==""){
		document.thisForm.Name.value="Name";	
		}
	
		}
	function clremailf(){
		if(document.thisForm.Email.value=="Email")
			document.thisForm.Email.value="";	
		}
		
		function clremailb(){
		if(document.thisForm.Email.value==""){
		document.thisForm.Email.value="Email";	
		}
	
		}
	function clrphonef(){
		if(document.thisForm.Phone.value=="Phone")
			document.thisForm.Phone.value="";	
		}
		
		function clrphoneb(){
		if(document.thisForm.Phone.value==""){
		document.thisForm.Phone.value="Phone";	
		}
	
		}
	function clrcmdf(){
		if(document.thisForm.Message.value=="Message")
			document.thisForm.Message.value="";	
		}
		
		function clrcmdb(){
		if(document.thisForm.Message.value==""){
		document.thisForm.Message.value="Message";	
		}
	
		}
	
	function AllowNumeric(e)
	{
		var iKeyCode = 0;
		if (window.event)
		iKeyCode = window.event.keyCode
		
		else if (e)
		iKeyCode = e.which;
		
		if (iKeyCode > 47 && iKeyCode < 58 || iKeyCode == 46 || iKeyCode == 0 || iKeyCode == 8)
		return true
		else
		return false;
	}
