

//
// HYPERLINK FUNCTION FOR RESULT WINDOW
//

function openHyperlink(layer, fldName, fldValue) {
    
    switch(layer) {
        case 'sedi_asia':
            //if (fldName == 'CITY_NAME') {
               window.open('http://asiapdcfs3/ ');
                //window.open('http://localhost/pathtodocumet/file' +fldValue+ '.pdf');
            //}
            break;
            
        default:
            alert ('See function openHyperlink in custom.js: ' + layer + ' - ' + fldName + ' - ' + fldValue);
    }
}


function showCategoryInfo(cat) {
    alert('Info about category: ' + cat);
}


function showGroupInfo(group) {
    alert('Info about group: ' + group);
}

