function newWindow(site, width, height){
  var top = (screen.height - height) / 2;
  var left = (screen.width - width) / 2;
  win = window.open(site,"","width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no");
}

function pictureInWindow(url, width, height, title){
  var top = (screen.height - height) / 2;
  var left = (screen.width - width) / 2;
  win = window.open("","","width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
  win.document.write('<html><head><title>'+title+'</title></head><body style="margin:0 0 0 0;" onClick="javascript:self.close()">');
  win.document.write('<img src="'+url+'">');
  win.document.write('</body></html>');
}

function blink(x){
  if(x){
    document.getElementById("news").style.borderStyle = "dashed";
//    document.getElementById("news").style.borderColor = "#ffdf00";
//    document.getElementById("news").style.backgroundColor = "#ff0000";
  }
  else{
    document.getElementById("news").style.borderStyle = "solid";
//    document.getElementById("news").style.borderColor = "#ff0000";
//    document.getElementById("news").style.backgroundColor = "#ffdf00";
  }
  window.setTimeout('blink('+(!x)+')', 1000);
}
