// Tipue 1.7


// ---------- script properties ----------


var results_location = 'results.html';


// ---------- end of properties ----------


function search_form(tip_Form)
{
	if (tip_Form.d.value.length > 0)
	{
		document.cookie = 'tid=' + escape(tip_Form.d.value) + '; path=/';
		document.cookie = 'tin=0; path=/';
		window.location = results_location;
	}
}

