//gets the div
function iamdiv(id) {
  var hrm = document.getElementById(id);
  return(hrm);
}
//shows the pop up
function windowpop() {
  window.open ('/lv/popups/pop_index.html','info','location=0,status=0,scrollbars=0,menubar=0,toolbar=0,width=500,height=650');
  //iamdiv('iamhidden').style.display = 'block';
}
//timer to hide it on mouseout
function hideme() {
  iamdiv('iamhidden').style.display = 'none';
}
