function goto(url){
	window.location.href = url;
}


function check_opinions()
{
	var error = 0;
	
	var field = new Array()
	
	var title = document.getElementById('title').value;
	var content = document.getElementById('article_body').value
	
		content = content.replace("<BR>","");
	
	
	if (title == '')
	{
		
		field.push("Title")
		
		error++;
			
	}
	
	
	/*if (content == '')
	{
	
		field.push('Content')
		
		error++;
	
	
	}*/
	
	
    if (error > 0)
	{
	
		jAlert(field.join("\n"), "Following field must not be empty")
		return false;
		
	}
	
	
}