function abrePopup(imageType,imageName,alt,posLeft,posTop,texto) {  // v4.01
	vScroll='no';
	if(texto!=''){
		//vScroll='yes';
	}
	//if(pos=='') 
	lugar='top';
	newWindow = window.open("","newWindow","width=100,height=100,scrollbars="+vScroll+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body  bgcolor="#ffffff" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onload="self.focus()">'); 
	if (imageType == "swf"){
		newWindow.document.write('<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\">');
		newWindow.document.write('<param name=movie value=\"'+imageName+'\"><param name=quality value=high>');
		newWindow.document.write('<embed src=\"'+imageName+'\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\">');
		newWindow.document.write('</embed></object>');	
	}else{
		if(texto!=''){
		   if(lugar=='botton'){
				newWindow.document.write('<img src=\"'+imageName+'\"  alt=\"'+alt+'\" onload=\"window.resizeTo((this.width+10),(this.height+55))\">'); 	
				newWindow.document.write('<br><span style=\"margin:5px;height:20px;\">&bull; '+texto+'</span>');
		   }else{
				newWindow.document.write('<table><tr><td style=\"font-family:tahoma,arial;font-size:11px;color:#006666;height=32px;padding-left:10px;padding-right:10px;\"> '+texto+'</td></tr></table>');
				//newWindow.document.write('<div style=\"height:1px;background-color:#1e5582;\"></div>');
				newWindow.document.write('<img src=\"'+imageName+'\"  alt=\"'+alt+'\" onload=\"window.resizeTo((this.width+10),(this.height+74))\" style=\"border-top-width: 1px;border-top-color: #006666;	border-right-width: 0px;	border-bottom-width: 0px;border-left-width: 0px;border-top-style: solid;border-right-style: none;border-bottom-style: none;border-left-style: none;\">'); 	
		   }
		}else{
			newWindow.document.write('<img src=\"'+imageName+'\"  alt=\"'+alt+'\" onload=\"window.resizeTo((this.width+10),(this.height+35))\">'); 	
		}
	}
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}