/* author: Hernan Elvira */
/* Creation date: 5/05/2006 */

function AplicacionPlus() {

if (screen.width >= 1024){    

	leftpos=screen.width-1024;
	ventana = window.open("","ventana","width=1013,height=694,left='+leftpos+',top=0,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no");
	ventana.location.href = "./gestion/panel.php";
	ventana.focus();
	
	} else{
	
	alert("Resolución Txunga");
	
	}

}