
<!--

function open_window(file, name, width, height, scrbar)
{ if(scrbar) window.open(file,name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width=" + width + ",height=" + height);
  else window.open(file,name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,width=" + width + ",height=" + height);
}

function clear_field(obj, val){if(obj.value == val) obj.value = '';}
function restore_field(obj, val){if(obj.value == '') obj.value = val;}
function hilight(obj){obj.style.background='#DFD29E'; obj.style.cursor='hand';}
function lowlight(obj){obj.style.background = 'transparent';}
function gotourl(url){document.location=url;}

//-->