/* PRICE QUERY */
var priceQueryID;
var priceQueryTitle;
var priceQueryHtml;
           
function priceQuery(prodID, title) {
    $('.priceQueryDialog').remove();
    priceQueryID = prodID;
    priceQueryTitle = title;
    $.ajax({type:"GET",url:"/js/template/pricequery.jtpl",data:null,dataType:"html", async:true, success:function (html, prodID, title) {
        priceQueryHtml = $(html);
        priceQueryShow(priceQueryID, priceQueryTitle);
    }});
}
            
function priceQueryShow(prodID, title) {
    html = priceQueryHtml;
    html.dialog({
        bgiframe: true,
        autoOpen: true,
        modal: true,
        title: title,
        buttons: { 
            "senden": function() { 
                if (
                    $('#inpPriceQuerySalutation').val() 
                    && $('#inpPriceQueryLastName').val()
                    && $('#inpPriceQueryFirstName').val()
                    && $('#inpPriceQueryStreet').val()
                    && $('#inpPriceQueryZip').val()
                    && $('#inpPriceQueryTown').val()
                    && $('#inpPriceQueryCountry').val()
                    && $('#inpPriceQueryPhone').val()
                    && $('#inpPriceQueryEmail').val()
                ) {
                    mydata = {anrede: $('#inpPriceQuerySalutation').val(), nachname : $('#inpPriceQueryLastName').val(), vorname : $('#inpPriceQueryFirstName').val(), strasse : $('#inpPriceQueryStreet').val(), plz : $('#inpPriceQueryZip').val(), ort : $('#inpPriceQueryTown').val(), land : $('#inpPriceQueryCountry').val(), telefon :$('#inpPriceQueryPhone').val(), email : $('#inpPriceQueryEmail').val(), bemerkung : $('#inpPriceQueryNote').val(), artikel : priceQueryTitle};
                    $.ajax({type:"POST",url:"/anfrage.php",data:mydata,dataType:"json", async: false});
                    alert('Vielen Dank!');
                    $(this).dialog("close");
                }
                else alert('Bitte füllen Sie alle gekennzeichneten Felder aus.');
            } 
	    }
        , width: '380px'
    });
}
