function askConfirmation(hyperlink)
{
	var agree=confirm("Are you sure you want to delete this item?");
	if (agree)
	{	
		window.location=hyperlink;
	}
}
/* Vraag om toestemming */
function askQuestion(hyperlink,question)
{
	answer = confirm(question);
	if(answer)
	{
		window.location = hyperlink;	
	}
}
			   
			   
function launch(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}