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 + 30  // 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.html','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='#ffffff'>");popUpWin.document.write("<img src=" + picture + "><br clear='all'>");popUpWin.document.write("<center><p style='font-family: Verdana, Arial, Helvetica, sans-serif; font-size: small;'>" + describeIt + "&nbsp;&nbsp;<br \/>");popUpWin.document.write("<\/p><form><font face='Courier New, Courier, mono' size='2'>"); popUpWin.document.write("<input type='button' value='Close this window' name='close_it' onClick='self.close()' style='font-family: Courier New, Courier, mono; font-size: small;'><\/form><\/center><\/body><\/html>");popUpWin.document.close();}
