<!--

//################################################################################
//#	This include file calls function(s) from the following other include file(s)
//#			N/A
//#
//################################################################################
	
function validateQSForm(frm){
	var txtInput = frm.ticker; 
	var strIllegalChars = "<>&"
		
	if(hasIllegalChars(txtInput.value, strIllegalChars)){ 
//		alert("The following characters are not allowed : \n\n\<, \>, \&"); 
		txtInput.focus(); 
		return false; 
	} 
	else {
		if(isAllSpaces(txtInput.value)){ 
			alert("Please enter a Symbol."); 
			txtInput.focus(); 
			return false; 
		} 
		else	{
			if(hasSpaces(txtInput.value)){ 
				alert("You may only search for one symbol at a time using the Quick Search. Spaces are not allowed."); 
				txtInput.focus(); 
				return false; 
			} 
			else	{
				return true;
			}
		}
	}
}
	
// -->