function GoHome(lang)
{
	location.href = "default.aspx?lang=" + lang.toUpperCase();
}
function openCustomerWindow(customerID, lang)
{
	var width = window.screen.availWidth-10;
	var height = window.screen.availHeight-30;
	window.open("http://www.weekend.co.il/redirect/customerRedirect.aspx?customerID=" + customerID + "&lang="+lang, "customerPage", "left=0, top=0, toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width="+ width +", height="+ height, true)
}

/*
function doSearch(objToClick)
{
	if(event.keyCode == 13)
	{
		document.getElementById(objToClick).click();
	}
}
*/
