function ventanaAbrir(destino,titulo,ancho,alto,scrolleo){
	//alert("tal");
	if(!ancho){
		ancho=600;
	}
	if(!alto){
		alto=510
	}
	if(!scrolleo){
		scrolleo="YES";
	}
	sw=screen.width; 
	sh=screen.height;
	window.open(destino, titulo,'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars='+scrolleo+', resizable=no, width='+ancho+', height='+alto+', top='+(sh-alto)/2+',left='+(sw-ancho)/2+'');
}

function abrirVentana2(destino,arriba,izquierda,ancho,alto){
	
	
	ventana=window.open(destino,'tal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width='+ancho+', height='+alto+', top='+arriba+',left='+izquierda+'');
	
}


function abrirImprimir(destino,titulo,ancho,alto,scrolleo){
	//sw=screen.width; 
	//sh=screen.height;
	ventana=window.open(destino, 'tal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars='+scrolleo+', resizable=no, width='+ancho+', height='+alto+', top=0,left=0');
	this.ventana.print();
	alert("ventana impresa");
	this.ventana.close();
	//setTimeout(cerrarVentana(this.ventana),50);
	//setTimeout(this.ventana.close(),50);
}
function opw_trek(imageName,imageWidth,imageHeight,wTopTitle,posLeft,posTop,wWidth,wHeight) {
	newWindow = window.open("","newWindow","location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,width="+wWidth+",height="+wHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+wTopTitle+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" >'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+wTopTitle+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();

}
function cerrarVentana(ventana){
	ventana.close();
}