// JavaScript Document

// POPUP Universal
<!--
function popuplink(whereto) {
	var load = window.open(whereto,'','scrollbars=yes,menubar=no,height=540,width=725,resizable=no,toolbar=no,location=no,status=yes');
}

// POPUP PO Script
<!--
function popupform(myform, windowname) {
	mmCalc(myform, 'submit');
	if (! window.focus)return true;
	window.open('', windowname, 'scrollbars=yes,menubar=no,height=540,width=725,resizable=no,toolbar=no,location=no,status=yes');
	myform.target=windowname;
	return true;
}
//-->

// POPUP Multi Products
<!--
function popupmulti(myform, windowname) {
	if (! window.focus)return true;
		window.open('', windowname, 'scrollbars=yes,menubar=no,height=540,width=725,resizable=no,toolbar=no,location=no,status=yes');
	myform.target=windowname;
	return true;
}
//-->

// PO Vars
<!--
		var strCurrency, strMainProductName, strProductDelimeter, strTellCustomer, strRequiredFieldText
		strCurrency = "$";
		strMainProductName = null;
		strProductDelimeter = "{br}";
		strTellCustomer = "Please select all product options above";
		strRequiredFieldText = "Not all required fields have been completed";
//-->
