
function linkjumpto(go){
  url=go.options[go.selectedIndex].value;
  
  if(url !="#"){
  location.href=url;
  }
}

/* window resize bug evasion (for ns 4.x) */
function rebuild(e) { self.location.reload(); }

if (document.layers) {
	document.captureEvents(Event.RESIZE);
	window.onresize = rebuild;
}

function newpage(winname,WebURL, XSize, YSize) {
	w = window.open(WebURL,winname,"WIDTH="+XSize+",HEIGHT="+YSize+",SCROLLBARS=1,RESIZABLE=1,TOOLBAR=1,MENUBAR=1,LOCATION=1 DIRECTORIES=0,STATUS=1");
}


function PostData(Mode){
  document.form2.mode.value = Mode;
  document.form2.submit();
}


