//************************************************************************************//
function abrirVentana()
{
	var accion = 'asp/comprobarlogin.asp?login=' + document.form.login.value;
	if (document.form.login.value=="")
		alert("Debe introducir un nombre de usuario para poder comprobar si existe.");
	else
		window.open(accion, 'LOGIN','resizable=no,toolbar=no,scrollbars=no,alwaysRaised=yes,width=500,height=170,screenX=200,screenY=200,status=yes');
}
//************************************************************************************//
//************************************************************************************//
function ventana(fichero, ancho, alto)
{
var aux, aux1, aux2;
	aux1=parseInt(ancho,10)+20;
	aux2=parseInt(alto,10)+24;
  	aux = window.open('','AMSYSTEM','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+aux1+',height='+aux2);
	var doc = aux.document;
	doc.open('text/html', 'replace');
	doc.write('<HTML><HEAD><TITLE>SCA STMO. CRISTO DE LA VERA-CRUZ</TITLE></HEAD><BODY><img src="'+fichero+'"></BODY></HTML>');
	doc.close();

  
}
//************************************************************************************//
