<!-- hide from old browsers

function getScreen(file,w,h)
{
	  pop=window.open('', 'Screen', 'scrollbars=no,height=200,width=200');
		pop.document.write('<html>\n<head>\n<title>' +file+ '</title>\n');
		// pop.document.write('<script language="JavaScript" src="javascript/javascript.js" type="text/javascript"> </'+'script>\n');

		pop.document.write('<script language="JavaScript" type="text/javascript">\n');
		pop.document.write('function fitPic() {\n');
		pop.document.write('   if (window.innerWidth)	 {    iWidth = window.innerWidth;     iHeight = window.innerHeight;   }\n');
		pop.document.write('	 else { iWidth = document.body.clientWidth;  iHeight =document.body.clientHeight;   }\n');
		pop.document.write('	 iWidth = document.images[0].width - iWidth;\n');
		pop.document.write('   iHeight = document.images[0].height - iHeight;\n');
		pop.document.write('   window.resizeBy(iWidth, iHeight);  };\n');
		pop.document.write('</'+'script>\n');
		pop.document.write('</head>\n');

		pop.document.write('<body bgColor="#ffffff" leftMargin="0" topMargin="0" onload="fitPic();">\n');
		pop.document.write('<img src="'+file+'">');
		pop.document.write('</body>');
		pop.document.write('</html>');
	  pop.document.close();
}



function fitPic()
{
   if (window.innerWidth)
	 {
      iWidth = window.innerWidth;
      iHeight = window.innerHeight;
   }
	 else
	 {
      iWidth = document.body.clientWidth;
      iHeight =document.body.clientHeight;
   }

	 iWidth = document.images[0].width - iWidth;
   iHeight = document.images[0].height - iHeight;
   window.resizeBy(iWidth, iHeight);
};

function GoBack()
{
   window.history.go(-1)
}

function getHelp(file)
{
   var filename = "/help/" + file;
   window.open(filename, 'Help', 'scrollbars,height=350,width=350');
}

//-->
