﻿// JScript File

  
function OpenWin(img, inHeight)
  {
  newWin = window.open('images/products/full/' + img, '_blank', 'width=600 height=' + (inHeight + 24) + ' top=6 left=6 resizable=yes');
  newWin.document.write('<title>&copy; Ibanez Guitar Centre</title>');

  newWin.document.write('<body style="margin: 0px; background-color: #ffffff">');
  newWin.document.write('<div align="center"><img src="' + 'images/products/full/' + img + '"></div>');
  newWin.document.write('<div style="background-color: #eeeeee; text-align: right; ');
  newWin.document.write('border-top: solid 1px #cccccc; padding: 4px 8px 0px 0px; height: 20px;">');
  newWin.document.write('<a style="padding-left: 5px; color: #000000; font-family: verdana; font-size: 8pt;"');
  newWin.document.write(' href="javascript:window.close()"><b>X CLOSE</b></a>');
  newWin.document.write('</div>');
  newWin.document.write('</body>');
  }
