function newWin(str_url, str_name, int_width, int_height) 
{
	var winX = (screen.width - int_width) / 2;
	var winY = (screen.height - int_height) / 2;
	str_WinParams = 'height=' + int_height +',width=' + int_width + ',top=' + winY+',left=' + winX + ',menubar=1,toolbar=0,scrollbars=0,resizable=0,status,toolbar=0';
	win = window.open(str_url, str_name, str_WinParams);
	if ((parseInt(navigator.appVersion) >= 4)|| (navigator.appName = 'Netscape')) { win.window.focus(); }
}

function newWin2(str_url, str_name, int_width, int_height) 
{
	var winX = (screen.width - int_width) / 2;
	var winY = (screen.height - int_height) / 2;
	str_WinParams = 'height=' + int_height +',width=' + int_width + ',top=' + winY+',left=' + winX + ',menubar=1,toolbar=0,scrollbars=1,resizable=0,status,toolbar=0';
	win = window.open(str_url, str_name, str_WinParams);
	if ((parseInt(navigator.appVersion) >= 4)|| (navigator.appName = 'Netscape')) { win.window.focus(); }
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  if (targ == 'blank') { 
  	win = window.open(selObj.options[selObj.selectedIndex].value, 'newwindow')
  } else {
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
  }
}

