// Author          Ben Gillbanks
// Web Address     http://www.binarymoon.co.uk

// --------------------------------------------------------------
// open an image window creating a top menu and title dynamically
// --------------------------------------------------------------
function imagewin(title, image, heightVal)
{   
  widthVal=400+20;
  heightVal=heightVal+30+10;
  
  args="width=" + widthVal + ","
  + "height=" + heightVal + ","
  + "resizable=0,"
  + "scrollbars=0,"
  + "statusbar=0,"
  + "menubar=0,"
  + "hotkeys=0,"
  + "titlebar=0,"
  + "left=0,"
  + "right=0,"  

  popupWin = window.open('','popupWin',args)

  popupWin.document.write("<html>\n<head>\n<title>Country Cuts - " + title + "</title>\n")
  popupWin.document.write("<link type='text/css' rel='stylesheet' href='styles.css'>\n</head>\n")
  popupWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onLoad='self.focus();'>\n")
  
  popupWin.document.write("<table width='100%' height='16' border='0' cellspacing='0' cellpadding='0'>\n<tr bgcolor='#888'>\n")

  popupWin.document.write("<td width='100%'><div style='font-size:10px; color:#fff;text-align:center;'><b>" + title + "</b> - click image to close window</div></td>\n")
  popupWin.document.write("</tr>\n</table>\n")

  popupWin.document.write("<a href='javascript:self.close()'>")
  popupWin.document.write("<center><img src='gallery/full/" + image + ".jpg' alt='Country Cuts image - " + title + "' border=0 /></center>")
  popupWin.document.write("</a>\n</body></html>")
  popupWin.document.close()
  
  popupWin.resizeTo(widthVal,heightVal);
}
