// Универсальный скрипт для создания фотогалерей // (c)Mad Brothers design studio 2005 // версия 1.0 (28.02.2005) // Использовать этот скрипт можно только с соглашения студии Mad Brothers // Изменение скрипта может привести его к некорректной работе. Вы изменяете его на свой страх и риск. //объявление переменных var var1, thumtext, curframe, bigpicWin, itemarray; var1=0; curframe=0; thumtext = ""; bigpicWin = null; //генератор иконок while (var1 < base.length) { itemarray = base[var1].split("|") thumtext = "
"+itemarray[1]+"
"+itemarray[2]+"
" + thumtext; var1++;}; // показать картинку в отдельном окне function bigpic(){ itemarray = base[curframe].split("|"); if (!bigpicWin || bigpicWin.closed) {properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width="+screen.width+",height="+screen.height+","; checkie = navigator.appName.indexOf("icrosoft"); if (checkie == -1) { properties = properties+"screenX=0,screenY=0"; } else { properties = properties+"left=0,top=0"; } bigpicWin = window.open('','bigpicWin',properties); bigpicWin.document.open(); bigpicWin.document.write(''); bigpicWin.document.write('© Mad brothers 2005'); bigpicWin.document.write(''); bigpicWin.document.write(''); bigpicWin.document.write('
'); bigpicWin.document.write('© Mad Brothers'); bigpicWin.document.write(''); bigpicWin.document.write(''); bigpicWin.document.close() bigpicWin.focus(); } else { bigpicWin.focus(); } }