// JavaScript Document
COPYRIGHT = " - ";
 
function writeCopyright()
{
    datanoua = new Date().getFullYear();
	
	if(datanoua > 2009)	document.write(COPYRIGHT, datanoua, ". All rights reserved.");
}
   
function xmlhttpPost(url) {
    if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else 
    { 
        alert("Your browser does not support AJAX!");
    }
    xmlhttp.open('POST',url,true);
    xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');  
    xmlhttp.onreadystatechange = stateHandler; 
    xmlhttp.send(queryString());
}
