﻿function SearchFormSubmit() {
    var url = "http://www.globus.lt/objektai.aspx?";
    if (document.getElementById('sell').checked)
        url += "action=1";
    else
        url += "action=2";
    
    url += "&otype=" + $('#ctl00_otype').val();
    url += "&rooms=" + $('#ctl00_rooms').val();
    url += "&city=" + $('#ctl00_s_city').val();
    url += "&district=" + $('#ctl00_s_district').val();
    url += "&price_f=" + $('#ctl00_price_f').val();
    url += "&price_t=" + $('#ctl00_price_t').val();
    url += "&sear=1";
        
	location.href = url;
}

function ShowObject(objectid, width, height) {
	var nwind=this.open('http://www.globus.lt/objektai-info.aspx?id='+objectid, null, "width="+width+",height="+height+",buttons=no,scrollbars=yes,location=yes,menubar=no,resizable=no,status=no,directories=no,toolbar=no");
	nwind.focus();
}

function ObjectTypeChanged(ddval) {    
    $.getScript('data.aspx?uaction=object_type_change&otype=' + ddval);    
}

function CityTypeChanged(ddval) {        
    $.getScript('data.aspx?uaction=city_type_change&city=' + ddval);    
}

