<!--
// See KB article about changing this dynamic HTML

function isNetscape(v)
{
	// Check if the browser is Netscape compatible
	// v  version number
	// returns  true if Netscape and version equals or greater
	return CheckBrowser("Netscape", v);
}

function isMicrosoft(v)
{
	// Check if the browser is Microsoft Internet Explorer compatible
	// v  version number
	// returns  true if MSIE and version equals or greater
   return CheckBrowser("Microsoft", v);
}

function CheckBrowser(b,v)
{
	// Check if the current browser is compatible
	// b  browser name
	// v  version number (if 0 don't check version)
	// returns true if browser equals and version equals or greater
	browserOk = false;
	versionOk = false;

   browserOk = (navigator.appName.indexOf(b) != -1);
   if (v == 0) versionOk = true;
   else  versionOk = (v <= parseInt(navigator.appVersion));
   return browserOk && versionOk;
}

function pic1()
{
	if (isMicrosoft(4))
	{
		var win1=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,WIDTH=251 HEIGHT=390');
		win1.document.clear;
	}
	else
	{
		var win1=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,WIDTH=251 HEIGHT=390');
	}
	var s1="<img ALIGN='CENTER' HSPACE='5' VSPACE='2' BORDER='2' SRC='interor.jpg' ALT='Pic' WIDTH='216' HEIGHT='305'>"
	var s2="<p ALIGN='CENTER' ><INPUT TYPE='button' VALUE=' Close Window ' onClick='self.close()' id='button'1 name='button'1></p>"
	win1.document.write(s1+s2);
	win1.document.title="Interior of our office building";
	win1.resizeTo(261,420);
}

function pic2()
{
	if (isMicrosoft(4))
	{
		var win2=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,WIDTH=512 HEIGHT=334');
		win2.document.clear;
	}
	else
	{
		var win2=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,WIDTH=512 HEIGHT=334');
	}
	var s1="<img ALIGN='CENTER' HSPACE='5' VSPACE='2' BORDER='2' SRC='exterior.jpg' ALT='Pic' WIDTH='477' HEIGHT='249'>"
	var s2="<p ALIGN='CENTER' ><INPUT TYPE='button' VALUE=' Close Window ' onClick='self.close()' id='button'1 name='button'1></p>"
	win2.document.write(s1+s2);
	win2.document.title="Outside of our office building";
	win2.resizeTo(522,364);
}
function pic3()
{
	if (isMicrosoft(4))
	{
		var win1=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,WIDTH=330 HEIGHT=353');
		win1.document.clear;
	}
	else
	{
		var win1=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,WIDTH=339 HEIGHT=353');
	}
	var s1="<img ALIGN='CENTER' HSPACE='5' VSPACE='2' BORDER='2' SRC='JollyCalendar.gif' ALT='Pic' WIDTH='280' HEIGHT='233'>"
	var s2="<p ALIGN='CENTER' ><INPUT TYPE='button' VALUE=' Close Window ' onClick='self.close()' id='button'1 name='button'1></p>"
	win1.document.write(s1+s2);
	win1.document.title="JGS Calendar";
	win1.resizeTo(330,353);
}



//-->
