// JavaScript Document
function validatebrowse(){
	if(form1.key.value == ''){
		return false;
	}else{
		return true;
	}
}

function abrirgrande(titulo,nombre,ancho,alto)
{
	var anch=ancho;
	var alt=alto;
	var top = (screen.availHeight/2) - (alt/2);
	var left = (screen.availWidth/2) - (anch/2);
	abrir=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,menubar=no,left='+ left +',top='+ top +',width='+ anch +',height='+ alt);
	abrir.focus();
	abrir.document.writeln("<html><head><title>"+ titulo +"</title></head>");
	abrir.document.writeln("<body leftmargin='0' topmargin='0' onblur='this.focus();'><table width='100%' border='0' cellpadding='0' cellspacing='0'>");
	abrir.document.writeln("<tr><td width='100%'><img src='./adminsite/images/"+ nombre +"' width='"+ ancho +"' height='"+ alto +"' alt='"+ titulo +"'></td></tr></table></div></body></html>");
	abrir.document.close();
	abrir.document.title = titulo;
}

function popnew(url,ancho,largo,status){
x = (screen.width/2)-(ancho/2);
y = (screen.height/2)-(largo/2);
popup=window.open(url,"","width="+ancho+",height="+largo+",top="+y+",left="+x+",status="+status+",location=no,menu=no,scrollbars=no,toolbar=no");
popup.focus();
}