// JScript source code
//set next month and yr
function set_mon_yr(m,y)
{
	xmlHttp=GetHttpObject();
	if(xmlHttp==null)
	{
		alert ("Your browser does not support AJAX!");
		return;
	}
	//system_generate_promotion
	var url="ajax/set_mon_yr.php";
	url=url+"?month="+m+"&year="+y;
	xmlHttp.onreadystatechange=stateChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
    function stateChanged()
    {
	    if(xmlHttp.readyState==4)
	    {
	        document.getElementById('app').innerHTML=xmlHttp.responseText;
	    }
    }
}
function GetHttpObject()
{
	var xmlHttp=null;
	try
	{
	// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch(e)
	{
	// Internet Explorer
	try
	{
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	}
	return xmlHttp;
}
