function frmchng(){	
$.ajax({
        type: "POST",
        url: "quickform.php",		
        success: function(msg){
                $("#header_ch").html(msg);
                $(document).ajaxComplete(function(){
                        try{
                                FB.XFBML.parse(); 
                        }catch(ex){}
                });

        },
        error: function (xmlHttpRequest, textStatus, errorThrown) {
                if(xmlHttpRequest.readyState == 0 || xmlHttpRequest.status == 0)
                         return;  // it's not really an error
                else
                        alert(errorThrown);
        }

        });
}
function frmsub(name,email,services,web_url,securitycode,errors,msent){
//var str = $("#quick_form").serialize();
$.ajax({
        type: "POST",
        url: "quickform.php",	
        //data: str,
        data:"name="+name+"&email="+email+"&services="+services+"&web_url="+web_url+"&securitycode="+securitycode+"&errors="+errors+"&msent="+msent,
        success: function(msg){
                $("#header_ch").html(msg);
                $(document).ajaxComplete(function(){
                        try{
                                FB.XFBML.parse(); 
                        }catch(ex){}
                });

        },
        error: function (xmlHttpRequest, textStatus, errorThrown) {
                if(xmlHttpRequest.readyState == 0 || xmlHttpRequest.status == 0)
                         return;  // it's not really an error
                else
                        alert(errorThrown);
        }

        });
        
}
