function validateAddBlog()
{
	// Check if headline is written
	if(!checkFieldEmpty(document.getElementById("blogHeadline").value, "blogHeadline"))
	{
		Form.errors = 1;
	}
	
	// Check if text is written
	if(!checkFieldEmpty(document.getElementById("blogText").value, "blogText"))
	{
		Form.errors = 1;
	}
}

function validateDelBlog(formID)
{
	if(confirm("Vill du ta bort blogginlägget?"))
	{
		document.getElementById(formID).submit();
	}
}

function validateReportBlog()
{
	if(confirm("Vill du anmäla blogginlägget?"))
	{
		document.getElementById("reportBlogForm").submit();
	}
}
