// JavaScript Document
function popupWindow(id,iWidth,iHeight) {
	window.open('popup.php?id='+id,'myWindow','width='+iWidth+'px,height='+iHeight+'px,menubar=0,location=0,resizable=0,scrollbars=0,status=0');
}

function jump_menu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
