function SetSingleRadioButtonOnly(nameregex, current) {
    re = new RegExp(nameregex);
    for (i = 0; i < document.forms[0].elements.length; i++) {
        elm = document.forms[0].elements[i]

        if (elm.type == 'radio') {
            if (re.test(elm.name)) {
                elm.checked = false;
            }
        }
    }
    current.checked = true;
}


function OpenPage(_URL, _Height, _Width) {
    if (_Height == '') {
        _Height = 635;
    }

    if (_Width == '') {
        _Width = 750;
    }
    window.open(_URL, '', 'width=' + _Width + ',height=' + _Height + ',top=0,left=0, toolbar=no,location=no,directories=no, status=no,menubar=no,scrollbars=yes,resizable=no');
}



// 31/07/09 JavaScript Document
function MM_showHideLayers() { //v9.0
    var i, p, v, obj, args = MM_showHideLayers.arguments;
    for (i = 0; i < (args.length - 2); i += 3)
        with (document) if (getElementById && ((obj = getElementById(args[i])) != null)) {
        v = args[i + 2];
        if (obj.style) { obj = obj.style; v = (v == 'show') ? 'visible' : (v == 'hide') ? 'hidden' : v; }
        obj.visibility = v;
    }
}