<!--
function printWHrelease() {
 if (window.print) {
  setTimeout('window.print();',200);
 }
 else {
  alert("Press 'Ctrl+p' or 'Cmd+p' on your keyboard to print article.");
 }
}

function popup(url,width,height){
  properties = 'width=' + width +
               ',height=' + height +
               'scrollbars=no,resizeable';
  window.open(url,'popup',properties);
  return true;
}

function popup_scrolling(url,width,height){
  properties = 'width=' + width +
               ',height=' + height +
               ',scrollbars=yes,resizeable';
  window.open(url,'popup',properties);
  return true;
}

var lt = String.fromCharCode(60);
var gt = String.fromCharCode(62);
var dquot = String.fromCharCode(34);

//-->

