﻿// JScript File

function openAddInfo(iProdID, iCatID, iAffID){
    window.open("../../pages/products/ProdAddInfo.aspx?pid=" + iProdID + "&ca=" + iCatID + "&afi=" + iAffID, "windowAddInfo", "width=500,height=500,scrollbars=yes,resizable=no,menubar=0");
}

 function openMoreImages(iProdID, iCatID, iAffID){
    window.open("../../pages/products/ProdMoreImages.aspx?pid=" + iProdID + "&ca=" + iCatID + "&afi=" + iAffID, "windowAddInfo", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=600,height=300");
}

//Inherited from NA site
function StartInt(page) {
OpenWin = this.open(page, "CtrlWindowI", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,width=568,height=295");
}

function startExpired(page){
OpenWin=this.open(page,"ControlWindowEx","toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,width=625,height=445");
}

function showInStatus(sMsg){
    //alert(sMsg);
    window.status = sMsg; 
    return true;
}

// AC: 9/21/2007 added for Upsell Promotion Learn More
 function openLearnMore( iProdID, iPromotionID, iCurrencyID){
    window.open("../../pages/products/ProdLearnMore.aspx?ca=14&pid=" + iProdID + "&promoid=" + iPromotionID + "&cid=" + iCurrencyID, "windowAddInfo", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=500,height=500");
}

// Ac: 12/03/2007 updated for Euro Site (wo#3591)
function openEuroShipping(iCurrencyID, sTitle, sCountryTxt){
    window.open("../../pages/products/ProdEuroShipping.aspx?cid=" + iCurrencyID + "&ttl=" + sTitle + "&ctry=" + sCountryTxt, "windowEuroShipping", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=400,height=600");
}

