
//Popup products promotions
function PopUpPromotions(iwidth, iheight)
{
    myleft = (screen.width)?(screen.width-iwidth)/2:100;mytop=(screen.height)?(screen.height-iheight)/2:100;
    settings='top=' + mytop + ',left=' + myleft + ',width= ' + iwidth + ',height= ' + iheight + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,fullscreen=no'
    PopupWin=window.open("InformacionParaDescargas.html",'PopupWin', settings);
    PopupWin.focus();
}
