<!--
function showpic(imgName,imgWidth,imgHeight,title,posLeft,posTop) {
	picWindow = window.open("","picWindow","width="+imgWidth+",height="+imgHeight+",left="+posLeft+",top="+posTop);
	picWindow.document.open();
	picWindow.document.write('<html><title>'+title+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	picWindow.document.write('<img src=images/pictures/'+imgName+'.jpg width='+imgWidth+' height='+imgHeight+' alt='+title+'>'); 
	picWindow.document.write('</body></html>');
	picWindow.document.close();
	picWindow.focus();
}

/*
Usage:

<a href="#"><img src="images/pictures/pic001.jpg" width="114" height="67" border="1" onClick="showpic('pic001','400','300','Title','100','')"></a>
*/


function popup (url,title,height,width,status) {
	window.open (url,title, 'height='+height+',width='+width+',left=100,top=100,scrollbars=yes,resizable=no,toolbar=no,status='+status+',location=no,directories=no');
}

//-->