function toggleAddNews() {

	if (dojo.byId('addNews').style.display == 'none') {
		dojo.byId('addNewsA').innerHTML = 'Cancel';
		dojo.byId('addNews').style.display = 'block';
	} else {
		dojo.byId('addNewsA').innerHTML = 'Add';
		dojo.byId('addNews').style.display = 'none';
	}
}

function editNews(id) {

	dojo.byId('editNewsA-'+id).style.display = 'none';
	dojo.byId('updateNewsA-'+id).style.display = 'block';
	dojo.byId('editNewsTitle-'+id).style.display = 'block';
	dojo.byId('newsContent-'+id).style.display = 'none';
	dojo.byId('editNewsContent-'+id).style.display = 'block';
}

function updateNews(id) {

	var url = "/admin/cms/updatenews";
	var title = dojo.byId('editNewsTitle-'+id).value;
	var content = dojo.byId('editNewsContent-'+id).value;
	
	title = title.replace(/&/, '%26');
	content = content.replace(/&/, '%26');
	
	var query = "id=" + id + "&title=" + title + "&content=" + content;
	
	dojo.xhrPost( {
		url: url,
		postData: query,
		handleAs: "text",
		load: function(response) {
			
			if (response) {
				dojo.byId('updateNewsA-'+id).style.display = 'none';
				dojo.byId('editNewsA-'+id).style.display = 'block';
				dojo.byId('newsContent-'+id).innerHTML = dojo.byId('editNewsContent-'+id).value;
				dojo.byId('newsTitle-'+id).innerHTML = dojo.byId('editNewsTitle-'+id).value;
				dojo.byId('editNewsTitle-'+id).style.display = 'none';
				dojo.byId('editNewsContent-'+id).style.display = 'none';
				dojo.byId('newsContent-'+id).style.display = 'block';
			}
		}
	} );
}

function translate(lang) {
    
    location.href = 'http://translate.google.com/translate?client=tmpg&hl=en&u=http%3A%2F%2Fwww.humancooperations.com%2F&langpair=' + lang;
}