﻿// JScript File

function clearSearch(){
    if(document.getElementById('_ctl0_txtQuickSearch').value == 'Search'){
        document.getElementById('_ctl0_txtQuickSearch').value = '';
    }
}

function putSearch(){
    if(document.getElementById('_ctl0_txtQuickSearch').value == ''){
        document.getElementById('_ctl0_txtQuickSearch').value = 'Search';
    }
}

function subNavGreen(obj){
    obj.style.backgroundImage = "url('i/subnav_green.gif')";
    obj.style.color = "#ffffff";
}

function subNavGray(obj){
    obj.style.backgroundImage = "url('i/subnav_gray.gif')";
    obj.style.color = "#5e6264";
}

function searchPropertyNameTxt(){
    var qstring = document.getElementById('_ctl0_txtQuickSearch').value;
    
    if(qstring != '' && qstring != 'Search'){
        location.href='/v2/propertyresults.aspx?qsearch=true&PropertyNameTxt=' + qstring;
    }
}



