
function ventana(url, tamx, tamy){
	var ancho="width="+tamx;
	var alto="height="+tamy;
	
	var opciones=ancho+", "+alto+" toolbar=0, location=0";
	
	window.open(url ,'', 'height=500, width=600, toolbar=no, location=no');
}


