Files
2026-04-30 14:38:11 +02:00

26 lines
637 B
JavaScript

var browser_url = "/js/swampy_browser/";
var fieldName = null;
var wind = null;
function openSwampyBrowser(field_name, url, type, win)
{
wind = win;
fieldName = field_name;
var height = 555;
var width = 850;
var top=Math.round((screen.height-height)/2);
var left=Math.round(screen.width/2);
var params = "top="+top+",left="+left+",width="+width+",height="+height+",buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no";
var wnd = window.open(browser_url, name, params);
wnd.focus();
}
function insertURL(url)
{
wind.document.getElementById(fieldName).value = url;
}