﻿function changeStatus(obj,baseurl,id) {
		var newstatus = obj.options[obj.selectedIndex].value;
        send(baseurl,newstatus,id);

}
	
function send(baseurl,newstatus,id)
{
$.ajax({	
		type: "POST",
		url: baseurl+'/admin/orders/check',
		data: 'status='+newstatus+'&id='+id,
		cache: false,
		success: function(data){
		html = window.eval(data);
		$('#important').html(html);
		$('#important').fadeIn('fast');
		setTimeout(function(){$('#important').fadeOut('slow')},1000);
	}
	});
}

	
function setClosed(baseurl,lang)
{
$.post(baseurl+'/'+lang+"/index/setclosed", function(data){
				$('.important_msg').fadeOut('slow');
            }, "json");

}


