function openWindow(url, width, height, scrolling) {
	var boolScrolling;
	if (scrolling == "") {
		boolScrolling = false;
	} else {
		boolScrolling = "yes";
	}
	
	window.open(url , "opensmall" , "toolbar=no,resizable=1,scrollbars=" + boolScrolling + ",width=" + width + ",height=" + height); 
}

function confirmDelete(url) {
	if (!confirm('Du kommer nu att ta bort detta inlägget\nVill du fortsätta?')) {
		return false;
	} else {
		top.location = url;
	}
}
