var bigpicWin; function bigpic(var1){ bigpicWin = null; 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(''); bigpicWin.document.write(''); bigpicWin.document.close() bigpicWin.focus(); } else { bigpicWin.focus(); } }