
function FullUrl(strFilename, fSecure)
{   var strUrl = 'www.preventiekompas.nl/pilot/' + strFilename;
    if(fSecure) strUrl = 'https://' + strUrl;
	else strUrl = 'http://' + strUrl;
	document.location = strUrl;
}
