function popup(site,win,atts) {
	win1=window.open (site,win,atts);
	win1.creator=self;
	//var xcntr=screen.width/2-win1.document.body.clientWidth/2;
	//var ycntr=screen.height/2-win1.document.body.clientHeight/2;
	//win1.moveTo(xcntr,ycntr);
}

/*
The call looks like this . . .
<a href="javascript:popup('tucson_pop.html','new_window','scrollbars=1,width=450,height=370')" onClick="this.blur()" title="Coming Soon">Tucson</a>
*/


function determineBrowser() {

NS4 = (document.layers) ? true : false;
IE4 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1)) ? true : false;
IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
NS6 = (!document.layers) && (navigator.userAgent.indexOf('Netscape')!=-1)?true:false;
}


function yourBrowser() {

document.write('<font color="green">');
if ((! NS4) && (! IE4) && (! IE5) && (! IE6) && (! NS6)) document.write("&nbsp; Your browser is undetermined.");
if (NS4) document.write("&nbsp; You are using Netscape 4.");
if (IE4 && (! IE5)) document.write("&nbsp; You are using Internet Explorer 4.");
if (IE5 && (! IE6)) document.write("&nbsp; You are using Internet Explorer 5.");
if (IE6) document.write("&nbsp; You are using Internet Explorer 6.");
if (NS6) document.write("&nbsp; You are using Netscape 6 or later.");

document.write("<br>&nbsp; Your screen resolution is " + screen.width + " x " + screen.height + ".");
document.write("<br>&nbsp; Your screen color depth is " + screen.colorDepth + " bits.");
document.write('</font>');
}