function MM_jumpMenu(targ,selObj,restore){ //v3.0
  strURL = selObj.options[selObj.selectedIndex].value;
  if( strURL != "" ) {
	  //eval(targ+".location='"+strURL+"'");
	  NewWindow( strURL );
  }
  if (restore) selObj.selectedIndex=0;
}

function NewWindow( newURL ) {
	NewWindow2( newURL, "" );
}

function NewWindow2( newURL, strOptions ) {
	newWin = window.open( newURL, "", strOptions );
	//window.open( previewURL, "Content Preview", "","toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=yes,width=400,height=400" );
}