//LLamada: VentanaCentradaParametros("contacto_aviso_legal.cfm", {width:820,height:50,scrollbars:0}, "AVISO_LEGAL");
function VentanaCentradaParametros(URL)
	{
	  
	  var opciones = arguments[1] || {};
	  var titulo = arguments[2] || 'VENTANA_CENTRADA';
	   
	  var width = opciones.width || 500;
	  var height = opciones.height || 400;
	  var toolbar = opciones.toolbar || 0;
	  var location = opciones.location || 0;
	  var directories = opciones.directories || 0;
	  var status = opciones.status || 0;
	  var menubar = opciones.menubar || 0;
	  var scrollbars = opciones.scrollbars || 0;
	  var resizable = opciones.resizable || 0;
	  var copyhistory = opciones.copyhistory || 1;
	  var status = opciones.status || 0;
			 
	  var left = (screen.width/2) - width/2;
	  var top = (screen.height/2) - height/2;
	 
	  
	  var styleStr = 'toolbar='+toolbar+',location='+location+',directories='+directories+',status='+status+',menubar='+menubar+',scrollbars='+scrollbars+',resizable='+resizable+',copyhistory='+copyhistory+',width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;  
	  var msgWindow = window.open(URL, titulo, styleStr); 
	   msgWindow.focus();		
	}
	
	

