
function popup(ruta,nombre,ancho,alto){	
	pos_x=(screen.availWidth / 2)-(ancho/2);
	pos_y=(screen.availHeight / 2)-(alto/2);				

	especificaciones = 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+ancho+',height='+alto+',left='+pos_x+',top='+pos_y;	
	open(ruta,nombre,especificaciones);
}

function popup2(ruta,nombre,ancho,alto){	
	pos_x=(screen.availWidth / 2)-(ancho/2);
	pos_y=(screen.availHeight / 2)-(alto/2);				

	especificaciones = 'toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width='+ancho+',height='+alto+',left='+pos_x+',top='+pos_y;	
	open(ruta,nombre,especificaciones);
}
