function jumpPage(newLoc) {
  newPage = newLoc.options[newLoc.selectedIndex].value;
  
  if (newPage != "") {
  	window.location = newPage;
  }
}

function popUpBlank(URL, width, height)
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=yes,width=" + width + ",height=" + height + "');");
}
