function submitter(theURL) { 
	document.forms[0].action=theURL; 
	document.forms[0].submit(); 
} 


function redirect(theURL) { 
      window.location.href=theURL; 
      // It would be nice if this could force a reload.. 
      // but you'll just have to make sure that the page itself is refreshed as needed. 
} 

function newWindow(theURL, winName) {
OpenWin = this.open(theURL, winName, "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}
