function GoUrl(obj, type) {
    var value = obj.value;
    if (value == -1) {
        var sHref = "/";
    }else {
//      if (type == "T") {var sHref = "http://plus7.ru/regions/okrug.asp?PointObjId="+value}
//      else {
var sHref = "/select.asp?PointType=" + type + "&PointObjId="+value;//};
    
    }
//  alert(sHref);
    top.location.href = sHref;
}

function SetLists(idList, value) {
    var i = 0;
    for (i=0; i < idList.length; i++) {
        if (idList.options[i].value == value) idList.selectedIndex = i;
    }
}

function GoUrl2(obj, type) {
    var value = obj.value;
    if (value != -1) {
        var sHref = "/select_new.asp?Path="+value;
        top.location.href = sHref;
    }
}

function GoUrl3(obj, type) {
    var value = obj.value;
    var t_Form = window.document.fm_SearchExt;
    var q = t_Form.q.value;

    if (value != -1)
    {
        var sHref = "/select_search.asp?Path="+value+"_"+q;
        top.location.href = sHref;
    }
}

// Для новостей
function GoUrl4(obj, type)
{
    var value = obj.value;
    if (value != -1)
    {
        var sHref = "/select_news.asp?Path=" + value;
        top.location.href = sHref;
    }
}


