/**
 * Functions for news-popup div
 */
 
function showNews() {
  var div = document.getElementById( 'newsDiv' );
  var ref = document.getElementById( 'newsImg' );
  var lft = ( ref.offsetLeft + 300 );

  div.style.display = "inline";
  div.style.visibility = "visible";
/*
  div.style.marginTop  = "600px";
  div.style.marginLeft = "200px";
  div.style.height = "500px";
  div.style.width = "400px";
*/


  div.style.left = lft + "px";
//  div.style.background = "#6666aa";
  div.style.border = "1px solid #6666aa";
}

function hideNewsDiv() {
  var div = document.getElementById( 'newsDiv' );
  div.style.display = "none";
  div.style.visibility = "hidden";
/*
  div.style.top  = "0";
  div.style.left = "0";
  div.style.height = "0";
  div.style.width = "0";
*/
//  div.style.background = "transparent";
  div.style.border = "none";
}

function hideNews() {
  setTimeout( 'hideNewsDiv();', 500 );
}

