// Tipue 1.63


// ---------- script properties ----------

//var results_location = "includes/search/results.html";
var results_location = "/search/results.php";

// ---------- end of script properties ----------

//alert(results_location);

function search_form(tip_Form) {
	if (tip_Form.d2.value !== "Search...." && tip_Form.d2.value !== "")
	{
		
		w = window.screen.availWidth; 
		h = window.screen.availHeight; 
		
		document.cookie = 'tid=' + escape(tip_Form.d2.value) + '; path=/';
		document.cookie = 'tin=0; path=/';
		window.open(results_location,''); //Open the results in the separate window
	}
	else
	{
		alert("Please enter a keyword to search...");
		tip_Form.d2.focus();
		return false;
	}
}

