function openUploadDialog(callback, maxSize, allowExt, denyExt, lang) { args = 'width=600,height=320,resizable=yes,scrollbars=yes,status=no,location=no,menubar=no,location=no'; url = '/inc/uploader.php?callback='+callback; if (maxSize) { url += '&maxsize='+maxSize; } if (allowExt) { url += '&allow='+allowExt; } if (denyExt) { url += '&deny='+denyExt; } if (lang) { url += '&lang='+lang; } remote = window.open(url,'UPLOAD',args); if (remote != null) { if (remote.opener == null) { remote.opener = self; } if (remote) { // Ако браузърат е Chrome първо блърва главния прозорец, // а след това фокусира на popUp прозореца var isChrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1; if (isChrome && remote.parent) { remote.parent.blur(); } // Фокусиране върху новия прозорец remote.focus(); } remote.focus(); } }