// Tipue 1.63


// ---------- script properties ----------


//var results_location = "results.html";
//var results_location = "index.php?page=search/results.html";
var results_location = "includes/pages/search/results.html";

// ---------- end of script properties ----------


function search_form(tip_Form) {
	if (tip_Form.d.value !== "Enter Search Keyword" && tip_Form.d.value !== "")
	{
		
		w = window.screen.availWidth; 
		h = window.screen.availHeight; 
		
		document.cookie = 'tid=' + escape(tip_Form.d.value) + '; path=/';
		document.cookie = 'tin=0; path=/';
		window.open(results_location,'');
		//window.location = results_location;		
		//window.open(results_location,'','width='+w+',height='+h+',scrollbar=yes,directories=yes,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=yes,resizable=yes,left=00,top=00,screenX=00,screenY=00');
	}
	else
	{
		alert("Please enter a keyword to search...");
		tip_Form.d.focus();
		return false;
	}
}
