// JavaScript Document
function highlight(e) {
if (document.all) {
 var l = e.parentElement;
  if (l == null) return;
  l.style.backgroundColor = "#F0E1C9";
}

}

function unhighlight(e) {
if (document.all) {
 var l = e.parentElement;
 if (l == null) return;
  l.style.backgroundColor = "#AB9C84";
}

}

function openWin(url, h, w) {
if (url == "") return;
window.open(url,null,  'height=' + h + ',width=' + w + ',status=yes,toolbar=no,menubar=no,location=no,scrollbars=no');
}

