﻿    function AgentSiteMapDirection(sQueryString){
        window.open('PropertyDetailDirections.aspx?' + sQueryString, 'MapDirections', 'width=980,height=600,scrollbars=yes');
    }
    
    $(document).ready(function(){
        $(".favoriteLinkTable tr:gt(0) td:eq(1)").each(function(){
            $(this).css("cursor","pointer");
            $(this).click(function(){
                window.open($(this).html());
            })
        })    
    })