<!--
function createPopup(image,ww,hh,ll)
	{	var winleft = (screen.width - ww) / 2;
		var contentWindowBEGIN='<html><head><title>Image</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">';
		if (ll != undefined){
			contentWindowBEGIN += '<a href="' + ll + '" target="_blank">';	
		}
		
		contentWindowBEGIN += '<img src="';
		
		var contentWindowEND='" alt="" style="cursor: pointer;">';
		
		if (ll != undefined){
			contentWindowEND += '</a>';	
		}
		
		contentWindowEND += '</body></html>';
		var winUp = (screen.height - hh) / 2;
		var style = 'left='+winleft+',top='+winUp+', width='+ww+', height='+hh+', status=no, menubar=no, toolbar=no, scrollbars=0';
		newwin=window.open("", "", style);
		newwin.document.write(contentWindowBEGIN+image+contentWindowEND);
	}
//-->
