/*
function AddNews(Area, id)
{
    var url = "";
            url = url.concat("nwNotice.aspx?a=", Area,"&id=",id);
            window.open(url, "", "width=600,height=550,menubar=no,status=no,location=no,toolbar=no,scrollbars=no,resizable=yes");
}

function AddAthletes(Area, id, vtype)
{
    var url = "";
            url = url.concat("nwAthlete.aspx?a=", Area,"&id=",id,"&t=",vtype);
            window.open(url, "", "width=600,height=600,menubar=no,status=yes,location=no,toolbar=no,scrollbars=yes,resizable=yes");
}

function AddPhoto(Area, id)
{
    var url = "";
            url = url.concat("nwPhoto.aspx?a=", Area,"&id=",id,"&sub=true");
            window.open(url, "", "width=500,height=50,menubar=no,status=no,location=no,toolbar=no,scrollbars=no,resizable=yes");
}

function AddComissao(Area)
{
    var url = "";
            url = url.concat("nwComissao.aspx?id=0&a=9&sub=false");
            window.open(url, "", "width=500,height=150,menubar=no,status=no,location=no,toolbar=no,scrollbars=no,resizable=yes");
}

function EdtComissao(id)
{
    var url = "";
            url = url.concat("nwComissao.aspx?sub=false&a=9&id=",id);
            window.open(url, "", "width=500,height=400,menubar=no,status=no,location=no,toolbar=no,scrollbars=no,resizable=yes");
}

function AddGame(Area, id, Category, type)
{
    var url = "";
            url = url.concat("nwGame.aspx?a=", Area,"&id=",id,"&c=",Category,"&t=",type);
            window.open(url, "", "width=500,height=300,menubar=no,status=no,location=no,toolbar=no,scrollbars=no,resizable=yes");
}

function ExcPhoto(id)
{
    var url = "";
            url = url.concat("excLastNotice.aspx?id=",id);
            window.open(url, "", "width=1,height=1,menubar=no,status=no,location=no,toolbar=no,scrollbars=no,resizable=no");
}

function imagem(img)
{

var i = img.split('|');

if (navigator.appName.indexOf("Microsoft Internet Explorer")>(-1))
    {
        var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]);
        switch(win_ie_ver)
        {
        
            case 6:            
                var minhaImg = new Image();
                minhaImg.src = i[0];
                document.images('imgprc').src = minhaImg.src;
                document.getElementById('lblLegenda').innerText =i[1];
                documentlblLegenda.innerText =i[1];
            break;
            
            default:
                imgprc.src=i[0];
                document.getElementById('lblLegenda').innerText =i[1];
            break;
        }
    }
if (navigator.appName=="Netscape")    
    {    
        imgprc.src=i[0];
        if(i[1] != null)
             {
             document.getElementById('lblLegenda').innerHTML =i[1];
        }else{
             document.getElementById('lblLegenda').innerHTML ='';
             }
    }
}

*/

function ExibirDestaque(Img, Titulo, Link)
{
	document.getElementById('imgprc').src = Img;
        
    if(Titulo != null)
         document.getElementById('lblLegenda').innerHTML = Titulo;
    else
         document.getElementById('lblLegenda').innerHTML = '';
         
    if(Link != null)
         document.getElementById('lblLink').href = Link;
}

