<!--

function openPictureWindow_Zoom(imageName,imageWidth,imageHeight,tableWidth,tableHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+tableWidth+",height="+tableHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write("<html><head><title>Enlarge Image</title>"); 
	newWindow.document.write("<link href=mce.css rel=stylesheet type=text/css><head>");
	newWindow.document.write('<body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginheight=0 marginwidth=0><table width='+tableWidth+' height='+tableHeight+' border=0 cellpadding=0 cellspacing=1 bgcolor=#CCCCCC>');
	newWindow.document.write('<tr><td><img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'></td></tr>');
	newWindow.document.write("<tr><td align=center bgcolor=#339933><table width=100% border=0 cellspacing=0 cellpadding=0>");
	newWindow.document.write("<tr><td width=5><img src=lay_mce/arw_w.gif width=5 height=5 hspace=5 vspace=1 border=0></td>");
	newWindow.document.write('<td align=left valign=middle class=TestoLiberoWhite>'+alt+'</td>');
	newWindow.document.write("<td align=right valign=middle class=TestoLiberoWhite>close</td>");
	newWindow.document.write('<td width=15><a href=\"javascript:window.close()\"><img src=lay_mce/close.gif width=15 height=15 hspace=2 vspace=1 border=0></a></td></tr>');
	newWindow.document.write("</table></td></tr></table>");
	newWindow.document.write("</body></html>");
	newWindow.focus();
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
