//Apertura Pagina
function wopen(pagina, nome, w, h, sc, t, st, m) // Pagina, Nome Logico, width, height, scrollbars, toolbar, status, menubar
{
	if (t=="") { t = "no" }
	if (st=="") { st = "no" }	
	if (m=="") { m = "no" }

	aaw = window.open(pagina, nome, "top=10, left=10, width="+w+", height="+h+", scrollbars="+sc+", toolbar="+t+", status="+st+", menubar="+m)
	aaw.focus()
}



