function showExample( name ) {
  win = window.open("","","width=500,height=400");
  win.document.open();
  win.document.write( "<html><head><title>Style '"+name+"'</title>");
  win.document.write( "<link rel='stylesheet' type='text/css' href='/styles/"+name+".css' />");
  win.document.write( "</head><body>");
  win.document.write( "<p style='font:bold 18px helvetica,arial,san-serif;text-align:center'>Style '"+name+"'</p>");
  win.document.write( "<p style='font:12px helvetica,arial,san-serif'>Page selector:</p>");
  win.document.write( "<p class='gbPages'>Page : 1 2 <a href='#'>3</a></p>");
  win.document.write( "<p style='font:12px helvetica,arial,san-serif'>Guestbook Entry:</p>");
  win.document.write( "<div class='gbTop'><p class='gbDetails'>Posted by: Guest [ ");
  win.document.write( "<a href='#'>e</a> ][ <a class='guestbook' href='#'>h</a> ]</p>" );
  win.document.write( "<p class='gbDate'>16:42:35 03rd Aug 2003</p></div>" );
  win.document.write( "<div class='gbMain'>Example Guestbook entry</div>" );
  win.document.write( "<p style='font:12px helvetica,arial,san-serif'>Sign Guestbook link:</p>");
  win.document.write( "<p class='gbSign'><a href='#'>Sign Guestbook</a></p>");
  win.document.write( "<p style='font:12px helvetica,arial,san-serif;text-align: center'>" );
  win.document.write( "<a href='' onclick='self.close()'>Close window</a></p>");
  win.document.write( "</body></html>");
  win.document.close();
};
