function godkend(theType, navn)
{
  var ok = confirm('Vil du slette ' + theType + ': '+ navn + '?')	
  if(ok == true)
  		return true;
	else
		return false;
}
/**
* Sends the user to the url specified
*/
function goUrl(site)
{
	window.location.href=site;
}

function godkend2(theType, navn)
{
  var ok = confirm('Vil du udsende ' + theType + ': '+ navn + '?');	
  if(ok == true)
  		return true;
	else
		return false;
}

/* Returns the user to the frontpage in admin */
function goHomeAdmin()
{
 	window.location.href='http://www.foodsam.dk/admin/index.php';
}

/* Returns the user to the frontpage in admin */
function goHome()
{
 	window.location.href='http://www.foodsam.dk/admin/index.php';
}
