function chk_val() 
{
	var xmlHttp;

    if (window.XMLHttpRequest) 
	{ 
		var xmlHttp = new XMLHttpRequest();
    } 
	else if (window.ActiveXObject) 
	{ 
        var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
	
	var strURL="ajax_val_chk.php";
	strURL=strURL+"?my_code="+document.getElementById('my_code').value;
	strURL=strURL+"&id="+Math.random();

    xmlHttp.open('GET', strURL, true);

    xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');

    xmlHttp.onreadystatechange = function() 
	{

        if (xmlHttp.readyState == 4) 
		{
            updatepage(xmlHttp.responseText);
        }

    }

    xmlHttp.send(strURL);

}
        

function updatepage(str)
{
	var s=str.split('-');
	if(s[0]=='ok')
	{
		window.location='homme/t-shirt/?privatesale=true';	
	}
	else
	{
		document.getElementById("msg_26").innerHTML = str;
	}
}


	function send_nl_2(){

var params = Form.serialize($('nl_f'));

new Ajax.Updater('send_box_bis', 'nl_ajax.php', {evalScripts:true, asynchronous:true,onSuccess:function(request){
	
	window.location='homme/t-shirt/';	
		
}, parameters:params});

}
