function getStyledText (){
    var windowText = "";
    windowText = "<a href=\"" + 
                 document.getElementById("store_url_id").value + "\">" + 
                 document.getElementById("store_name_id").value + "</a>" + "<br/>" + 
                 document.getElementById("store_address_id").value + "<br/>" + 
                 document.getElementById("store_city_id").value + ", " +
                 document.getElementById("store_state_id").value;



    //Add a css class .iwstyle for the info window text
    styledWindowText = "<span class='rental_iwstyle'>" + windowText + "</span>";
    return styledWindowText;
}

