function openWindow(url, w, h) {
	var options = "width=" + w + ",height=" + h + ",";
	options += "resizable=yes,scrollbars=yes,status=no,";
	options += "menubar=no,toolbar=no,location=no,directories=no";
	var newWin = window.open(url, 'newWin', options);
	newWin.focus();
}

function go2page(theURL) {
	if(theURL != "#" && theURL != "")
	{
		location.href=theURL;
	} else
	{
		FindAProduct.elements[0].options[0].selected = true;
	}
}