// JavaScript Document

// Funcion que abre un popup
function abrir_detalle(theURL,ancho,alto) {
	
	window.open(theURL,'','width='+ancho+',height='+alto+',top=10,left=62,scrollbars=yes');
	
} 