
<!-- Roll Over 

browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion); 

if (browser_name == "Netscape" && browser_version >= 3.0) { roll = 'true'; }
else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 3.0) { roll = 'true'; }
else { roll = 'false'; }
function msover(img,ref) { if (roll == 'true') { document.images[img].src = 
ref; } }
function msout(img,ref)  { if (roll == 'true') { document.images[img].src = 
ref; } }

// -->


<!-- Drop Down Menu

function opendown(divid)
{
	divid.style.display = divid.style.display == "none" ? "" : "none";
}

// -->

<!-- Begin popup
function popUp(URL) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=187,left = 100,top = 5');");
}
// End onLoad="popUp('special.htm')" --> 

// -->


<!-- Begin ViewImage
	function ViewImage(ifile,ix,iy,ititle) { 
	var win;
	var sWidth;
	var sHeight;
	var NS = (document.layers) ? 1 : 0;
	win = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=no,toolbar=no,left = 100,top = 50");

/*
	if (NS) {
	sWidth = win.innerWidth;
	sHeight = win.innerHeight;
	} else {
	sWidth = win.document.body.clientWidth;
	sHeight = win.document.body.clientHeight;
	}

	if(sWidth!=ix || sHeight!=iy) {
	win.close();
	setTimeout("ViewImage('"+ifile+"',"+ix+","+iy+",'"+ititle+"')", 250);
	return;
	}
*/
	win.document.open();
	win.document.write("<html><head><title>"+ititle+"</title>");
	win.document.write("</head><body bgcolor=#000000>");
	win.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');
	win.document.write("<img src="+ifile+"></div></body></html>");
	win.document.close();
	}
/*
  This goes in the body:
<a href="javascript:ViewImage('http://img/large.jpg',576,303,'Description')"><img src="small.jpg" width=288 height=152 border=1></a>
or
<a href="javascript:ViewImage('http://img/large.jpg',576,303,'Description')">View the Picture</a>
*/
//  End -->

// -->

<!--hide from old browsers
var alreadyOpen = false;
var popupWin;
function openWindow(url,name,w,h){
	if (parseInt(navigator.appVersion) > 2) 
	{
		if (alreadyOpen){
			if (popupWin.closed) {
				popupWin = window.open(url,name,'scrollbars,resizable,width='+w+',height='+h);
			} else {
				popupWin.location = url;
				popupWin.focus()
			}
		} else {
			popupWin = window.open(url,name,'scrollbars,resizable,width='+w+',height='+h);
			alreadyOpen = true;
		}
	}
}
//-->

<!-- Opens A new window

function newwindow(URL)
{
aWindow=window.open(URL,"new","width=400,height=181,status=no,scrollbars=no,resize=no,menubar=no");
}
// -->

