/*************************************************************************** * iPop: Automatic Image Popup * Copyright (c) 2003-2006 by David Schontzler | www.stilleye.com * Use allowed under the Academic Free License 2.1 * http://opensource.org/licenses/afl-2.1.php * Description: Automate your image popup windows (centered and sized) * Compatibility: Win/IE5+, Mozilla/Netscape, degrades otherwise *************************************************************************** * Version: 2.82 + AutoApply 1.0 ***************************************************************************/ ///////////////// USER SETTINGS ///////////////// // Set the target for browsers that don't support the script. By default, // target is "_self" which will open in the same window as the link. Change // it to whatever target you like. The built in targets (_blank, _self, // _top, and _parent) are supported. iPop.DegradeTarget = "_blank"; // Set this to true if you want to be able to click on the image to close // the popup window iPop.ClickImageToClose = true; // Set this to true if you want to close the last open popup image when you click // on a new popup (like window reuse) iPop.CloseOpenWindows = false; // Set this to false if you want to disable the Internet Explorer image toolbar iPop.ieImageToolBar = true; // Set the background color (ex: "black", "white", "#33dc80") iPop.bgColor = "white"; // Set the padding around the image iPop.imagePadding = 10; // Messages displayed, you can customize them for your own language or wording iPop.Messages = { // loading: "Loading image.", // loadingSub: "Please wait...", // errorLoading: "Image not found.", // errorLoadingSub: "Could not load image.", // errorLoadingClose: "Close window", // noResize: "Image loaded.", // noResizeSub: "Your browser does not allow for window resizing.", // noResizeView: "View Image", // imageCloseTip: "Clicca per chiudere la finestra." loading: "Sto caricando l'immagine...", loadingSub: "Un attimo di attesa...", errorLoading: "Immagine non trovata.", errorLoadingSub: "Impossibile caricare l'immagine.", errorLoadingClose: "Chiudi la finestra", noResize: "Immagine caricata.", noResizeSub: "Il tuo browser non consente il ridimensionamento della finestra.", noResizeView: "Visualizza l'immagine", imageCloseTip: "Clicca per chiudere la finestra" }; ///////////////// FUNCTIONALITY ///////////////// ///////////////// DO NOT EDIT ///////////////// iPop.Version = 2.82; iPop.imgWin = null; iPop.ieSp2 = (navigator.appName.toLowerCase().indexOf("internet explorer") > -1 && navigator.appMinorVersion.toLowerCase().indexOf("sp2") > -1); iPop.ie7 = navigator.userAgent.indexOf("MSIE 7") > -1; iPop.imagePadding = Math.max(iPop.imagePadding, 0); function iPop(img, imgTitle) { function degrade() { switch(iPop.DegradeTarget) { case "_blank" : open(img); break; case "_self" : location = img; break; case "_top" : top.location = img; break; case "_parent" : parent.location = img; break; default : open(img, iPop.DegradeTarget); } return false; } // just follow the link in browsers that do not support images or the DOM // or launch in specified target if that's what you wanted it to do if(!document.images || !document.getElementById) { return degrade(); } // check to close open popups (if set to do so) if(iPop.CloseOpenWindows && iPop.imgWin) { if(iPop.imgWin.close) { iPop.imgWin.close(); } iPop.imgWin = null; } // initial (small) window with loading screen var width = 150, height = 100; if(iPop.ieSp2) { height += 20; } if(iPop.ie7) { height += 45; } var left = (screen.availWidth - width)/2, top = (screen.availHeight - height)/ 2; var imgWin = window.open("about:blank", "", "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top); // when moz disables all popups, imgWin will be false if(!imgWin) { return degrade(); } // user can pass an image title if they wish. by default, // window title will display: "Image (img source)" imgTitle = imgTitle || "Image (" + img + ")"; // before the script is loaded, at least in Win/IE when doing local testing; // timeout should (presumably) prevent that var html = '' + '\n