function showFullSize(currentpict, pwidth, pheight){ 
	openPictureWindow(currentpict, pwidth, pheight, 'Click outside window to close Image'); 
} 
function openPictureWindow(imageName,imageWidth,imageHeight,alt) 
{ 

	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight); 
	newWindow.document.open(); 
	newWindow.document.write('<HTML><head><TITLE>Click outside to close</TITLE></head><BODY bgcolor="#000000" marginheight=0 marginwidth=0 leftmargin=0 topmargin=0 onBlur="self.close()"></head>');
	newWindow.document.write('<table border="0" cellpadding="0" cellspacing="0" height=100% width=100%><tr><td align=center valign=middle>'); 
	newWindow.document.write('<IMG SRC='+imageName+' ALT="'+alt+'">');
	newWindow.document.write('</td></tr></table>'); 
	newWindow.document.write('</BODY></HTML>'); 
	newWindow.document.close(); 
	newWindow.focus(); 
}
