﻿function showPopUp(url, name, width, height) 
{  
    var w = screen.availWidth;
    var h = screen.availHeight;
    
    var l = (w - width) / 2;
    var t = (h - height) / 2;
    
    var p = window.open(url, name, 'width=' + width + ',height=' + height + ',top=' + t + ',left=' + l + ',scrollbars');
    p.focus();
}


function ViewNoticia(CD_PAGINA, CD_NOTICIA)
{
    if(CD_PAGINA == null)
        location.href = 'View.aspx?CD_NOTICIA=' + CD_NOTICIA;
    else
    {
        var url = new String(parent.location.href);
        url = url.toUpperCase();
        if(url.indexOf('DEFAULTWCM') != -1)
            parent.location.href = '../../DefaultWCM.aspx?wcmp=' + CD_PAGINA + '&CD_NOTICIA=' + CD_NOTICIA;
        else
            parent.location.href = '../../Default.aspx?wcmp=' + CD_PAGINA + '&CD_NOTICIA=' + CD_NOTICIA;
    }
}


function ViewOutrasNoticias(CD_PAGINA)
{
    ViewNoticia(CD_PAGINA, null);
}
