// JavaScript Utilities Library
//
//         // THIS LINE LOADS THE JS LIBRARY 
//
//         <SCRIPT LANGUAGE="JavaScript" SRC="utils.js"></SCRIPT>
//
// --- Global variables ---
//
// DETERMINE BROWSER BRAND
var isNav = false;
var isIE  = false;

// ASSUME IT'S EITHER NETSCAPE OR MSIE
if (navigator.appName == "Netscape") {
    isNav = true;
}
else {
    isIE = true;
}
//
// --- Functions begin here ---
//
// SHOWPIC opens a window with name "Photowin" (if not already existing) and loads document passed as param-1
// then focus is set to newly opened window in case it already exists and is behind other windows.
function showPic(picname){
	var	picWin;
	picWin = window.open(picname,'photowin','dependent=yes,titlebar=yes,scrollbars=yes,resizable=yes,location=no,menubar=no,status=no,width=615,height=600');
	picWin.focus();
	//mapWin.document.close();
}
// ------------------------------------------------

