//
// Window/Text Helper Functions
// 2003-2004 Axel Trocha
//
// note-to-self: symlinked for different sites so remember this before changing stuff!!
//

function openWindow(url,w,h) {
  var newin, options;

  options = "width="+w+",height="+h+",";
  options += "resizable=no,toolbar=no,location=no,directories=no,";
  options += "status=yrd,menubar=no,scrollbars=no,top=100,left=200";

  newin = window.open(url,"window",options);
  newin.focus();
}


function deleteText()  {
  window.document.search0.search.value="";
  document.search0.search.focus();
}
