// JavaScript Document
function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = "";
		 theText.className = "myclass";
     }
 }
 function doReload(theText) {
     if (theText.value == "") {
         theText.value = theText.defaultValue
	 	theText.className = "myclass";
    }
 }
 function searchValue() {	
	var sv = document.getElementById('searchv').value;
	if(sv=="search"){ 
  	 		alert("Enter Search key");
    	  	document.searchFrm.searchv.focus();
  	 		return false;
	   }
}
//function doSubmit() { 
//	document.contactFrm.submit();
//}
//
function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = "";
		 theText.className = "myclass";
     }
 }
 function doReload(theText) {
     if (theText.value == "") {
         theText.value = theText.defaultValue
	 	theText.className = "myclass";
    }
 }
//function validmail(str) {
//	var status ='';
//	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
//		if (filter.test(str))
//		status=true
//		else{
//		alert("Please enter a valid email id!")
//		status=false
//		}
//	return (status)
//}
//function validphone(phone){
//	if (isNaN(phone)){
//			alert ('Your Phone number seems to be invalid')
//			return false;
//		}
//}

