﻿// 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='/propertyresults.aspx?qsearch=true&PropertyNameTxt=' + qstring;
        //ListingCategoryTxt=SaleLease
        location.href='/propertyresults.aspx?ListingCategoryTxt=SaleLease&PropertyNameTxt=' + qstring;
    }
}

function shiftNav(y){
    document.getElementById('tbNav').className = y;
}

function clearSubscribe(){
    if(document.getElementById('_ctl0_txtSubscribe').value == 'Your Email Address'){
        document.getElementById('_ctl0_txtSubscribe').value = '';
    }
}

function putSubscribe(){
    if(document.getElementById('_ctl0_txtSubscribe').value == ''){
        document.getElementById('_ctl0_txtSubscribe').value = 'Your Email Address';
    }
}
