	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.Comments.value=="Comments")
			document.thisForm.Comments.value="";	
		}
		
		function clrcmdb(){
		if(document.thisForm.Comments.value==""){
		document.thisForm.Comments.value="Comments";	
		}
	
		}

	function clrdesf(){
		if(document.thisForm.Descrpt.value=="Brief Description")
			document.thisForm.Descrpt.value="";	
		}
		
		function clrdesb(){
		if(document.thisForm.Descrpt.value==""){
		document.thisForm.Descrpt.value="Brief Description";	
		}
	
		}


	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;
	}
