var Looking = new function() {

	this.search = function() {
		
		
		
		var f1=document.frmSearch;
		var txt=f1.keyword.value;
		var seltype=f1.selType.value;
		
		if (txt.length<=1) {
			alert("You must type more than one character");
		} else {
		
		
			var url = "index.php?mod=search&selType="+seltype+"&keyword="+txt;
			
		
			document.location.href=url;
		}
	};
	
	
	
	
}
