/*Ventana reducida a 450 Px*/
function vent(pagina,nom,alto){
	myWindow = window.open(pagina, nom, 'toolbar=no,width=450,height='+alto);
}
/*Ventana redimensionamble que aparece en el origen (0,0) de la pantalla*/
function ventanaform(forma,pagina,nom,ancho,alto){
	myWindow = window.open(pagina, nom, 'screenX=0,screenY=0,left=0,top=0,toolbar=no,resizable=yes,width='+ancho+',height='+alto);
}
//abre una ventana no redimensionable
function vent_nr(pagina,nom,ancho,alto){
	myWindow = window.open(pagina, nom, 'screenX=0,screenY=0,left=0,top=0,toolbar=no,resizable=no,scrollbars=no,width='+ancho+',height='+alto);
}
//muestra el mensaje pasado como parámetro en el status
function stat(txt){
	window.status=txt;
	return true;
}
/*
function derecha(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
//alert('Botón derecho inhabilitado')
return false;
}

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
//alert('Botón derecho deshabilitado')
}
}
document.onmousedown=derecha*/