<!--
function changeDiv(the_div,the_change,xpos,ypos){
  var the_style = getStyleObject(the_div);
  if (the_style != false){
    the_style.display = the_change;
  }else{
  	the_style.display = "none";
  }
  the_style.left = xpos+'px';
  the_style.top = ypos+'px';
}
function getStyleObject(objectId){
  if (document.getElementById && document.getElementById(objectId)) {
    return document.getElementById(objectId).style;
  } else if (document.all && document.all(objectId)) {
    return document.all(objectId).style;
  } else {
    return false;
  }
}
-->
