﻿// JScript File
/**********************/
function couponsPopup(cId)
{
    var OpenWin, urlPopup;
    if (cId) //print one image
    {
        urlPopup = "id=" + escape(cId);
    }
    else //print all images
    {
        var aImages = document.getElementById("divSiteCoup").getElementsByTagName("IMG");
        var cIds = '';
        var sSrc = '';
        for (i=0;i<aImages.length;i++){
            sSrc = aImages[i].src;
            sSrc = sSrc.substring(sSrc.lastIndexOf('/')+1);
            cIds += sSrc + '|';
        }
        urlPopup = "path=" + escape('../usacarpetview/couponspecial/') + "&ids=" + escape(cIds);
    }
    w = screen.width; h = screen.height;
    w_win = 680; h_win = 500;
    OpenWin = window.open("common/pop_coupons.asp?" + urlPopup,"USA_Coupons","height="+h_win+",width="+w_win+",top="+(h-h_win)/2+",left="+(w-w_win)/2+",resizable=no,scrollbars=1");
    OpenWin.focus();
}
/**********************/