function spawnWindow(URL) {
	window.open(URL, 'advice', 'toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizeable=no, width=450, height=450');
}
function spawnJob(URL, id) {
	window.open(URL, 'advice' + id, 'toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizeable=no, width=530, height=500');
}
function clickButton(e, buttonid){ 
      var bt = document.getElementById(buttonid); 
      if (typeof bt == 'object'){ 
            if(navigator.appName.indexOf("Netscape")>(-1)){ 
                  if (e.keyCode == 13){ 
                        bt.click(); 
                        return false; 
                  } 
            } 
            if (navigator.appName.indexOf("Microsoft Internet Explorer")>(-1)){ 
                  if (event.keyCode == 13){ 
                        bt.click(); 
                        return false; 
                  } 
            } 
      } 
} 
