// JavaScript Document
<!--
function OpenBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { 
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.name = "pricing";
  window.open(theURL + self.name,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}
function OpenBrWindowAny(theURL,winName,features, myWidth, myHeight, isCenter) { 
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL + self.name,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}
function OpenBrWindowList(theURL,winName,features, myWidth, myHeight, isCenter, formNum) { 
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.name = "pricing";
  var pick = eval ("document.form" + formNum + ".MyDrop.selectedIndex");
  var MyField = eval("document.form" + formNum + ".MyDrop.options[" + pick + "].value");
  var myUrlAdd = "&prodPriceID="
  window.open(theURL + self.name + myUrlAdd + MyField,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}

function MM_openBrWindow3(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function addtocart(prodIDgroup,pgroupID,selObj)
{
	window.location="addtocart1_prod.asp?prodIDgroup="+prodIDgroup+"&pgroupID="+pgroupID+"&prodPriceID="+selObj.options[selObj.selectedIndex].value;
}
function addtocart2(prodIDgroup,pgroupID,selObj)
{
	window.location="addtocart1_prod.asp?prodIDgroup="+prodIDgroup+"&pgroupID="+pgroupID+"&prodPriceID="+selObj.options[selObj.selectedIndex].value;
}
//-->