function screenimage(imgname) {
	wintop = winleft = 1;
	screenWide=790; screenHigh=590;
	if (screen.top)
		wintop = wintop; // screen.top;
	if (screen.left)
		winleft = winleft; //screen.left;
	if (screen.width)
		screenWide = screen.width-winleft-4;
	if (screen.height)
		screenHigh = screen.height-wintop-4;
	wide=1028>screenWide?screenWide:1028;
	high=692>screenHigh?screenHigh:692;

	winopt="resizable,scrollbars,width=" +wide+ ",height="+ high +",screenX="+ winleft +",screenY="+wintop;
	imgwin = window.open("","blithwood",winopt);
	imgwin.document.open("text/html","replace");
	imgwin.document.write("<html><head><title>Blithwood - Picture Viewer</title></head><body style='background:sienna' >");
	imgwin.document.write("<div>");
	imgwin.document.write("<img src='"+imgname+"' onClick='window.close()' title='Click the Picture to Close the window'>");
	imgwin.document.write("</div>");
	imgwin.document.write("</body></html>");
	imgwin.document.close();
	return;
}

function statClick() {
	window.status="Click for a Full Screen View";
	return true;
}
