function openWin(img, title, details, features) 
{
  winId = window.open('','newwin',features);
  winId.document.write('<html><head><title>:: TRANCES ARC :: </title></head><body topmargin=0 marginwidth=0 marginheight=0 leftmargin=0 bgcolor=#000000><center><img src=gallery/' +img+ '>');
  winId.document.write('</center></body></html>');
  winId.document.close();
  winId.focus();
}



