var baseurl = "";

function dN ( id ) {
  e = document.getElementById(id);
  if (e) {
    var style = (e.style.display == "none") ? 'block' : 'none';
    e.style.display = style;
  }
}

function viewImage(url, w, h, title) {
   var x = parseInt( (screen.availWidth / 2) - (w / 2) );
   var y = parseInt( (screen.availHeight / 2) - (h / 2) );

   // generate url
   pWin = window.open( "", "_blank", "width=" + w + ",height=" + h + ",top=" + y + ",left=" + x + ",dependent=yes");
   pWin.document.open();
   pWin.document.writeln('<html><head></head><body height="100%" width="100%" style="top:0; left:0; margin:0; padding:0;"><table width="100%" height="100%" border="0" cellpadding="4" cellspacing="0"><tr><td height="10" bgcolor="#0B5891" align="center"><p style="font-family:arial, helevetiva, sans-serif; font-weight:bold; color:#fff; font-size:12px;">' + title + '</p></td></tr><tr><td align="center" height="*">');
   pWin.document.writeln('<img src="' + baseurl + 'thumb.php?f=' + url + "&w=" + w +"&h=" + h + '" />');
   pWin.document.writeln('</td></tr></table></body></html>');
   pWin.document.close();
}
