<!--Hide from JS-Impaired Browsers

function initArray() {
 for (var i = 0; i < initArray.arguments.length; i++)
  this[i] = initArray.arguments[i];
 this.length = initArray.arguments.length;
}

var popUpWin = '';
var picture = '';

function makePopUpWin(pic,high,wide) {
 var tall = high + 0
 var side = wide + 0
 picture = pic
 
if (popUpWin && !popUpWin.closed) {
  popUpWin.close();
 }
   popUpWin = eval("window.open('popup.html','newWin','height="+tall+",width="+side+"')");
   if (!popUpWin.opener) popUpWin.opener = self;
}

function update() {
   popUpWin.document.open();
   popUpWin.document.write("<html><head><title>Boss Hoss Motorcycles New Zealand</title></head>");
   popUpWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><center>");
   popUpWin.document.write("<img src=" +picture+ ">");
   popUpWin.document.write("</center></body></html>");   
   popUpWin.document.close();
}

// -->

