function validate(search){

		/*var text = new String(document.searchform.iqk1.value);
		
		var re = new RegExp(/[\W|_]/);
		
		if(text != null)
			while(text.match(re) != null) {
				text = text.replace(re, "");
			}
		
		if (text && text.length < 3){
			alert(search);
			return false;
		}*/
		
		return true;
	}