function p77_popup(img, img_width, img_height) {
	img_height += 20;
	img_width += 20;
	var winleft = (screen.width - img_width) / 2;
  var winUp = (screen.height - img_height) / 2;
  winProp = 'width='+img_width+',height='+img_height+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable';
	winId = window.open('','Gallery',winProp);
  winId.document.write('<body onLoad="if (window.focus) window.focus()"><center>');
  winId.document.write('<a href="javascript:self.close();"><img border="0" src="' + img + '"/></a>');
  winId.document.write('</center></body>');
  winId.document.close();
}

function p77_loadCss (url) {
  if (document.layers)
    window.location.href = url;
  else if (document.getElementById) {
    var css = document.createElement('link'); // Create node
    css.setAttribute("rel","stylesheet"); // Add Attribute rel
    css.setAttribute("href",url);  // Add Attribute href
    css.defer = true; // Speed up display 
    document.getElementsByTagName('head')[0].appendChild(css); // inject!
  }
}
