﻿
function verificar()
{    
    
   if (!window.navigator.javaEnabled()) {
        newWindow("instrucoes_jvm.htm", "JVM", 400, 200, "yes");
        win.focus();
    }

    if(!navigator.javaEnabled())
        newWindow("instrucoes_jvm.htm", "JVM", 400, 200, "yes");
        win.focus();
}

function jvm()
{   
    newWindow("instrucoes_jvm.htm", "JVM", 400, 200, "no");
}

function recarrega()
{     
     $("HT").Centralizar();
}

function $(id)
{
    return document.getElementById(id);
}

function $$(type)
{
    return createElement(type);
}
   
function newWindow(page, name, w, h, scroll) 
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	properties = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+scroll+',menubar=0,titlebar=no,statusbar=no';
	win = window.open(page, name, properties)

}

function recarregarPaginas()
{

    var s = document.HT.getIdNoAtual();
    paginas.src = 'GetDescritivo.aspx?id='+s;
    paginas.location.reload();

}

//window.onload = verificar;

