﻿// JScript File
/**********************/
function nashTNCoups(cId){
    var OpenWin, urlPopup;
    if (cId){  // print one image
        urlPopup = "id=" + escape(cId);
    } else{    // print all images
        var aImages = document.getElementById("divCs").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('../NashView/') + "&ids=" + escape(cIds);
    }
    w = screen.width; h = screen.height; 
    w_win = 525;
    h_win = 415;
    OpenWin = window.open("common/NashTNc.asp?" + urlPopup,"nashville_coupons","height="+h_win+",width="+w_win+",top="+(h-h_win)/2+",left="+(w-w_win)/2+",resizable=no,scrollbars=1")
    OpenWin.focus();
}
