if (screen.width >= "800" && screen.height >= "600")
{
    //window.moveTo( (screen.width-800)/2, (screen.height-600)/2 );
    //window.resizeTo( 800, 600 );
}
else
{
    alert("Este site foi preparado para a resolução 800x600");
    window.resizeTo( screen.width, screen.height );
}
window.defaultStatus = "Seja bemvindo ao nosso site.";
function abrejan(url, titulo, features)
{
    window.open(url, titulo, features );
}
function getdate()
{
    var d = new Date();
    return ( d );
}
d = getdate();
if ( ( d.getDay() == 5 && d.getHours() >= 17 ) || ( d.getDay() == 6 && d.getHours() <= 19 ) )
{
    window.open("http://jesus.softvix.com.br/4mandam.htm");
}



