function doManageArticles(is_checked, article_id, month, year, title, type) {

	//var article_id = window.document.form1.article_id.value;
	
	//var is_checked = window.document.form1.is_current.checked;

	if (is_checked == true)
	{
	  checked = 0;
	
	} else {
	  checked = 1;

	}

	if(title == 0){
		title = "";
	}
	if (month < 10){
		month_extra = 0;
	}else{
		month_extra = "";
	}
	
	url = "articles_manage.php?update=true&is_current=" + checked + "&article_id=" + article_id + "&month=" + month_extra + month + "&year=" + year + "&title=" + title + "&type=" + type;
	location.href = url;
			
}

function doManageDirectory(is_checked, id, type) {


	if (is_checked == true)
	{
	  checked = 0;
	
	} else {
	  checked = 1;

	}
	
	
	url = "directory.php?update=true&" + type + "=" + checked + "&id=" + id + "&type=" + type;
	location.href = url;
			
}

