<!--

var wFlag = false;
var sWargs = ", status=no, locationbar=no, menubar=no, resizable=no"
var iScreenX = screen.availWidth/2;
var iScreenY = screen.availHeight/2;

function showpic(Bpath,sComment,bDir)
{
	if(wFlag)
	{
		Bwin.close(); wFlag=false;
	}
	if(bDir)
	{
		Bwin=window.open("", "pics", "height=700, width=480, top="+(iScreenY-350)+", left="+(iScreenX-252)+sWargs);
	}
	else
	{
		Bwin=window.open("", "pics", "height=540, width=640, top="+(iScreenY-270)+", left="+(iScreenX-332)+sWargs);
	}
	Bwin.document.open();
	Bwin.document.writeln('<html><head><title>Pic</title></head><body bgcolor="#000000" text="#808080" style="margin:0px;" onClick="self.close();"><img src="lanpics/'+Bpath+'"'+((bDir)?"width=480 height=640":"width=640 height=480")+' border=0 alt="close"><br><br><div style="font:bold 10pt Arial; text-align:center;">'+sComment+'</div></body></html>');
	Bwin.document.close();
	Bwin.focus();
	wFlag=true;
	return true;
}

function showshot(Bpath)
{
	Bwin=window.open("", "shots", "width=800, height=600, top="+(iScreenY-300)+", left="+(iScreenX-412)+sWargs);
	Bwin.document.open();
	Bwin.document.writeln('<html><head><title>Screenshot</title></head><body bgcolor="#000000" text="#808080" style="margin:0px;" onClick="self.close();"><img src="../maps/pics/'+Bpath+'" alt="close"></body></html>');
	Bwin.document.close();
	Bwin.focus();
	wFlag=true;
	return;
}

//-->