var xmlhttp13;

function getlang3(lang,val)
{


    xmlhttp13=GetXmlHttpObject13();
    if (xmlhttp13==null)
    {
        alert ("Browser does not support HTTP Request");
        return;
    }


    var url = "site/views/php_content/get_lang_ajax3.php";
    var params = "lang="+lang+"&val="+val;





    xmlhttp13.open("POST", url, true);

    //Send the proper header information along with the request
    xmlhttp13.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xmlhttp13.setRequestHeader("Content-length", params.length);
    xmlhttp13.setRequestHeader("Connection", "close");

    xmlhttp13.onreadystatechange = function()
    {//Call a function when the state changes.
        if(xmlhttp13.readyState == 4 && xmlhttp13.status == 200)
        {
            var response = xmlhttp13.responseText;


            document.getElementById("cat_type3").innerHTML=xmlhttp13.responseText;
        };
    };
    xmlhttp13.send(params);







}

function GetXmlHttpObject13()
{
    if (window.XMLHttpRequest)
    {
        // code for IE7+, Firefox, Chrome, Opera, Safari
        return new XMLHttpRequest();
    }
    if (window.ActiveXObject)
    {
        // code for IE6, IE5
        return new ActiveXObject("Microsoft.XMLHTTP");
    }
    return null;
}
