function popup(StaticPage,dow,WindowWidth,WindowHeight) {
   scott=window.open(StaticPage,'desc','toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=no,resizable=yes,copyhistory=no,width='+WindowWidth+',height='+WindowHeight)
   scott.focus()
}

function validateSKU() {
	var pass = true;
	if (document.forms.form.sku.value == "") {
		changeDisplay('sku_select_warning', 'block');
		pass = false;
	}
	return pass;
}

function changeDisplay(objectID, changeTo) {
	if (document.layers) { document.layers[objectID].display = changeTo; }
	else if (document.all) { document.all[objectID].style.display = changeTo; }
	else if (document.getElementById) { document.getElementById(objectID).style.display = changeTo; }
}