<!--

var winopt =
	"toolbar=no,location=no,directories=no,status=no"
	+ ",menubar=no,scrollbars=yes,resizable=yes,"

function GoNewWindow (Where, Wide, High) {
			var u = "";
			var w = "";
			var h = "";

         u = Where;
         w = Wide;
         h = High;
//         alert(u + "\n" + h + "\n" + w);
         winopt = winopt + "width=" + w + "," +  "height=" + h;
         CtrlWin = this.open(u, "CtrlWindow", winopt);
}
<!--- Get Current year --->
now = new Date;

thisYr = now.getYear();

if (thisYr < 1900) {
thisYr = thisYr + 1900;
}	

<!--- Get Screen size --->
var myscreen_width = screen.width;

if(myscreen_width >= 1000) { 
var myFoto = "1"; 
} else { 
var myFoto = "0" ;
}

<!--- rollover action --->
if (document.images) { 
    <!--- home button --->
    homeup       = new Image(); 
    homeup.src   = "images/dauNavHomeOff.gif" ; 
    homedown     = new Image() ; 
    homedown.src = "images/dauNavHomeOn.gif" ; 
} 

function buttondown( buttonname ) 
{ 
    if (document.images) { 
      document[ buttonname ].src = eval( buttonname + "down.src" ); 
    } 
} 

function buttonup ( buttonname ) 
{ 
    if (document.images) { 
      document[ buttonname ].src = eval( buttonname + "up.src" ); 
    } 
}



function NewWindow (Where, Wide, High) {
var winopt =
	"toolbar=no,location=no,directories=no,status=no"
	+ ",menubar=no,scrollbars=yes,resizable=yes,"

			var u = "";
			var w = "";
			var h = "";

         u = Where;
         w = Wide;
         h = High;
//         alert(u + "\n" + h + "\n" + w);
         winopt = winopt + "width=" + w + "," +  "height=" + h;
         CtrlWin = this.open(u, "CtrlWindow", winopt);
}
//-->
