//Su explorador no soporta java o lo tiene deshabilitado; esta pagina necesita javascript para funcionar correctamente
<!-- 

var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

function abrir(url, type, strWidth, strHeight){
	closeWin();
	if (type == "fullScreen"){
		strWidth = screen.availWidth - 10;
		strHeight = screen.availHeight - 35;
	}
	
	var tools="";
	var left=0;
	var top=0;
	left = (screen.availWidth / 2) - (strWidth/2);
	top = (screen.availHeight / 2) - (strHeight/2);

	if (left<0) left =0;
	if (top<0) top =0;

	if (type == "fullscreen") tools = "resizable,toolbar=no,location=no,scrollbars=yes,menubar=no,width="+strWidth+",height="+strHeight+",top=0,left=0";
	if (type == "console") tools = "resizable=yes,toolbar=no,location=no,scrollbars=yes,width="+strWidth+",height="+strHeight+",left="+left+",top="+top;
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}

//-->     

