﻿// JScript File
 function ValidateSearch()
	{	
        var theform;
	    var postback = true;
    			
	    if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) 
		    theform = document.forms["aspnetForm"];
	    else
		    theform = document.aspnetForm;		    
	    if (alltrim(theform.ctl00$txtSearch.value) == "Search")
        {
            alert('Please Enter Search String');
            theform.ctl00$txtSearch.focus();  
	        return false; 
        }

		return true;
	}
