/**
 *  Contains some simple javascript functions
 */

//Function to change the cursor on links!
function changeCursor(el, cursor)
{
	el.style.cursor = cursor;
}
function getReport(id)
{
	var url = "index.php?sida=nyheter&id=" + id;
	window.location = url;
}
