/*********This method is to validate Text for quick Search ***************/
/*********obj is the form object of the text filed and 'search' is the name of the text field************************/
function validateQuickSearchForm(obj){
	var charLength = obj.search.value;
	var testRegExp = /[#%<>]/ig		
	if (charLength.length >= 3){
	    if(testRegExp.test(charLength)){
 		    alert("Invalid special character used");
 		    return false;
	    }else{
			obj.REQUEST.value = "QUICKSEARCHINTERMEDIATE";				
			return true;
	    }
	}else{
		alert("Minimum 3 characters needed to do Quick Search");
		return false;				
	}
}