function breakout_of_frame() 
{ 
if (top.location != location) 
	{top.location.href = document.location.href ;
      }
 } 

function detect() {
   var ms = navigator.appVersion.indexOf("MSIE")
    ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5,
      ms+6)) >= 4)
    if (ie4) {
     document.body.onmouseover = hilite;
     document.body.onmouseout = unhilite;
     }
}
function hilite() {
     src = event.toElement;
     if (src.tagName == "A") {
         src.oldcolor = src.style.color
         src.style.color= "#ff0000";
     }
}
function unhilite() {
     src = event.fromElement;
     if (src.tagName == "A") {
         src.style.color= src.oldcolor;
     }
}

function Clear() {
     window.status=' '; return true;
}
