// JavaScript Document

 function showWin() {

 	var win = new Window({className: "alphacube", title: "",
	                      width:500, height:300,
	                      url: "http://kakelugnspannan.com/formula.html", showEffectOptions: {duration:1.5}})
	win.showCenter();


}
    jQuery(document).ready(function() {
        // handle posting of this form
        jQuery("#frmqc").submit(function() {
            // serialize the form fields to be used in the AJAX requests
			if(echeck(document.frmqc.qc_from_email.value)){
				jQuery.post('http://kakelugnspannan.com/qcontact.php', jQuery(this).serialize(), function(data) {
					document.frmqc.qc_from_email.value= '';
					document.frmqc.qc_msg.value= '';
					document.frmqc.qc_from_tel.value= '';
					alert("Tack för ditt meddelande!");
				});
			}
            // return false to stop this form from submitting
            return false;
        });
    });
