function initArray() {for (var i = 0; i < initArray.arguments.length; i++)this[i] = initArray.arguments[i];this.length = initArray.arguments.length;}var chrome = new initArray("menubar","menubar,toolbar","menubar,status,resizable,scrollbars","");var popUpWin = '';var describeIt = '';var picture = '';var winFeatures = '';function makePopUpWin(pic,high,wide,text,features) {var tall = high + 30  // adjust for spacing to border above and below picturevar side = wide + 0  // adjust for spacing to border on sides of picturedescribeIt = textpicture = picwinFeatures = featuresif (popUpWin && !popUpWin.closed) { popUpWin.close(); }popUpWin = eval("window.open('blank.htm','newWin','"+chrome[winFeatures]+",height="+tall+",width="+side+"')");if (!popUpWin.opener) popUpWin.opener = self;}function update() {popUpWin.document.open();// content for the popup window is defined herepopUpWin.document.write("<html><head><title>Larger image<\/title><\/head>");popUpWin.document.write("<body bgcolor='#D2DEE2'>");popUpWin.document.write("<img src=" + picture + "><br clear='all'>");popUpWin.document.write("<center><p><font face='Verdana, Arial, Helvetica, sans-serif' size=2>" + describeIt + "&nbsp;&nbsp;<br>");popUpWin.document.write("<\/font><\/p><form><font face='Courier New, Courier, mono' size='2'>"); popUpWin.document.write("<input type='button' value='Close this window' name='sluit' onClick='self.close()'><\/font><\/form><\/center><\/body><\/html>");popUpWin.document.close();}