// JScript source code
function display(myimage) {
 html = "<HTML><HEAD>" +
  "</HEAD><BODY LEFTMARGIN=0 " 
  + "MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER>" 
  + "<IMG SRC='" + myimage + "' BORDER=0 NAME=image " 
  + "onload='window.resizeTo(document.image.width,document.image.height+80)'>"
  + "</CENTER>" 
  + "</BODY></HTML>";
 popup=
 window.open
  ('','image',
  'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width=100,height=100');
 popup.document.open();
 popup.document.write(html);
 popup.document.focus();
 popup.document.close()
 };
 function openFixedPopup(url,title,articleLink){
	var link = url+"?Title="+title+"&ArticleLink=" + articleLink;
	var width = 500;
	var height= 500;
	var top = (screen.height - height)/2;
	var left = (screen.width -width)/2;
	window.open(link, '', 'width='+width+',height='+height+',left='+left+',top='+top+',resizable=no,scrollbars=no', false);
}