function searchEmpty()
 { if(document.forms[1].elements[0].value=='Search the report')
  { document.forms[1].elements[0].value=''; };
    document.forms[1].elements[0].style.color='#000';
    document.forms[1].elements[1].style.color='#000';
	document.forms[1].elements[1].style.fontStyle='normal';	}
	
function checkemplty(){
	if((document.forms[1].elements[1].value=='') || (document.forms[1].elements[1].value=='Search the report')){
		alert("Please fill the search box");
		return false;	
	}
	$.hasTagName('form')[1].submit();	
}