function form_send()
{
    var name = document.getElementById("id_name").value;
    var address = document.getElementById('id_address').value;
    var city = document.getElementById('id_city').value;
    var st = document.getElementById('id_st').value;
    var zip = document.getElementById('id_zip').value; 
    var phone = document.getElementById('id_phone').value;
    var email = document.getElementById('id_email').value;
    var text = document.getElementById('id_text').value;
    
    bldg = $('input[@name=bldg]').attr("value");
    floor = $('input[@name=floor]').attr("value"); 
    unit = $('input[@name=unit]').attr("value"); 
    
    $.get("lib/modules/form_send.php", {name:name, address:address, city:city, st:st, zip:zip, phone:phone, email:email, text:text, bldg:bldg, floor:floor, unit:unit}, function(data){
        if(data == '0') { 
            $("#form_status").empty().append("Thank you for your intrest in Miracle Mile One of our representatives will be contacting you shortly");
        } else {
            $("#form_status").empty().append(data);
        } 
    });
}

function get_image(file){
    $("#preview_img").attr("src", "uploaded/"+file);
}

function show_popup(file){
    open("popup.php?file="+file,"new_window","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0, width=900,height=600,top=0,left=0");
}

function show_popup_floorpl(file){
    open("popup_floorplans.php?file="+file,"new_window","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0, width=1100,height=800,top=0,left=0");
}

function popup(file, width, height){
open("popup_fullpath.php?file="+file,"new_window","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0, width="+width+",height="+height+",top=0,left=0");
}

