function surfto(form) {
	var myindex=form.select.selectedIndex
	if (form.select.options[myindex].value != "0") {
		window.open(form.select.options[myindex].value, target="_parent");
	}
}

function selectProduct(dropDown) {
	if(dropDown.value != "0")
		window.open(dropDown.value, target="_parent");
}

function LoadMain() {
	window.open("products.asp", target="_parent");
}

function openSED(titleName, imageName, width, height) {
	window.open("../../includes/filters/SED.asp?titleName=" + titleName + "&imageName=" + imageName, "SEDWindow", "width="+width+",height="+height+",status=no,resizable=no,scrollbars=no");
}

function openPopup(windowTitle, fileName, width, height) {
	window.open(fileName, windowTitle, "width="+width+",height="+height+",status=no,resizable=yes,scrollbars=yes");
}

