// JavaScript Document

function showImage(URL)
			{
				if ( URL )
				{
					ww = 600;
					wh = 400;
					imgwindow = window.open(URL,"imgwindow"," scrollbar=no, toolbar=no, fullscreen=no, resizable=yes,width="+ww+",height="+wh);
					imgwindow.focus();
				}
				return false;
			}



