<!--
// 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 showpicture(pictitle, picimage, picwidth, picheight, windowwidth, windowheight)
{
	if (isMicrosoft(4))
	{
		var win1=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,WIDTH=windowwidth HEIGHT=windowheight');
		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=windowwidth HEIGHT=windowheight');
	}
	var s1="<img ALIGN='CENTER' HSPACE='5' VSPACE='2' BORDER='2' SRC="
	var s2=" ALT='Pic' WIDTH='"
        var s3="' HEIGHT='"
        var s4="'>"
	var s5="<p ALIGN='CENTER' ><INPUT TYPE='button' VALUE=' Close Window ' onClick='self.close()' id='button'1 name='button'1></p>"
	win1.document.write(s1+picimage+s2+picwidth+s3+picheight+s4+s5);
	win1.document.title=pictitle;
	win1.resizeTo(windowwidth,windowheight);
}

//-->
