function zekerWeten(sUrl, sMsg)
{
	if ( confirm(sMsg) )
	{
		window.location=sUrl;
	}
}

//IE6 flicker bug solution:
window.onload = function() {
	try {

		document.execCommand("BackgroundImageCache", false, true);

	} catch(err) {}
}