// JavaScript Document
<!--this script opens a new browser window.
function NewWindow(mypage, myname, w, h, s) {
	y = 100;
    x = 100; 
//	y = (600 - height)/2;
//    x = (640 - width)/2; 
//    if (screen) {
//        y = (screen.availHeight - height)/2;
//        x = (screen.availWidth - width)/2;
//    }
//	if (screen.availWidth > 1800) { 
//		x = ((screen.availWidth/2) - width)/2; 
//    }

//    winprops = "height="+h+",width="+w+",screenX="+x+",screenY="+y+",top="+y+",left="+x+",scrollbars="+s+"";
	winprops = "height="+h+",width="+w+",top="+y+",left="+x+",scrollbars="+s+"";
    win = window.open(mypage, myname,winprops);

	if (parseInt(navigator.appVersion) >= 4) { 
		win.window.focus(); 
	}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//-->