function getScrollingPosition() { var position; if (typeof window.pageYOffset != 'undefined') { position = window.pageYOffset; } else if (typeof document.documentElement.scrollTop != 'undefined' && document.documentElement.scrollTop > 0) { position = document.documentElement.scrollTop; } else if (typeof document.body.scrollTop != 'undefined') { position = document.body.scrollTop; } return position; } function show_Xpop(url, title) { aken = new Window({className: "dialog", minimizable:false,maximizable: false,closable:true, resizable: true,width:300, height:48, recenterAuto:true, title:title,hideEffect: Effect.SwitchOff,showEffect:Element.show}); aken.setAjaxContent(url, {method: 'get'}, true, true); aken.showCenter(); } function show_change(url, title) { a = new Window({className: "dialog", minimizable:false,maximizable: false,closable:true, resizable: false,width:300, height:60, recenterAuto:true, title:title,hideEffect: Effect.SwitchOff,showEffect:Element.show}); a.setAjaxContent(url, {method: 'get'}, true, true); a.showCenter(); } function show_calc(prod_id, title) { a = new Window({className: "dialog", minimizable:false,maximizable: false,closable:true, resizable: true,width:350, height:305, recenterAuto:true, title:title,hideEffect: Effect.SwitchOff,showEffect:Element.show}); /*a.setAjaxContent("http://www.vekfoto.ee/hind.php?prod_id="+prod_id, {method: 'get'}, true, true); */ a.setURL('http://www.vekfoto.ee/hind.php?prod_id='+prod_id); a.showCenter(); } function pilt(id, max, type, m1, m2, m3, m4, thefolder) { if (type == 'inline') { pos = getScrollingPosition(); aken = new Window({className: "dialog", minimizable:false,maximizable: false,closable:true, top:pos,resizable: true, hideEffect:Element.hide, showEffect:Element.show, minWidth: 10,width:max, height:(max/1.6), hideEffect: Effect.SwitchOff,showEffect:Element.show,recenterAuto:true}); aken.setURL("/anna_galerii_pilt.php?p="+id+'&m1='+m1+'&m2='+m2+'&m3='+m3+'&m4='+m4, {method: 'get'}); aken.showCenter(); } else { eval("window.open('/anna_galerii_pilt.php?p='+id+'&m1='+m1+'&m2='+m2+'&m3='+m3+'&m4='+m4+'&thefolder='+thefolder,'','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=1,height=1,left=0,top=0');"); } }