function frame_away()
{
//dont frame the entire mainelistings site please
//  if (parent.frames.length > 0)
if(window != top)
  {
    top.location.href = location.href;
  }
}
function row_over_silver(el){
  el.className="tr_silver";
}
function row_over_blue(el){
  el.className="tr_blue";
}
function row_out(el){
  el.className="tr_plain";
}
function row_over_full_blue(el){
  el.className="tr_full_blue";
}
function fieldset_over(el, lgd){
  el.style.border='1px solid #0371b0';
  document.getElementById(lgd).style.color='#0371b0';
}
function fieldset_out(el, lgd){
  el.style.border='1px solid silver';  
  document.getElementById(lgd).style.color='#000000';
}  

function change_page(lnk){
  if(lnk.indexOf('http://')==-1 && lnk.indexOf('.pdf')==-1){
    window.location = lnk;
  }
  else{
    window.open(lnk, '', 'fullscreen=yes, scrollbars=1');
  }
}
//Spans
function span_link_over(el){
  el.className="link_over";
}
function span_link_out(el){
  el.className="link_out";
}