// JavaScript Document
	//Abre una ventana auxiliar
	function popUp()
	{
		var pagina = popUp.arguments;
		window.open(pagina[0],((pagina.length < 2)? "auxiliar" : pagina[1]),((pagina.length < 3)? ("dependent,height=400,hotkeys=no,left=" + (screen.width / 2 - 275) + ",resizable=no,scrollbars,top=" + (screen.height / 2 - 250) + ",width=550") : pagina[2]));
		//showModalDialog(pagina[0],'administrador','dialogHeight:500px;dialogLeft:' + (screen.width / 2 - 300) + 'px;dialogTop:' + (screen.height / 2 - 275) + 'px;dialogWidth:550px;scroll:yes;center:yes')
	}
