<!--//

var startTime=new Date();

function view_address() {
	if (document.getElementById && document.createTextNode) {
	for (var i=0;i<18;i++) {
	var em = 'e'+i;
	if (em && document.getElementById(em)) {
	address_to_replace=document.getElementById(em).firstChild;
	real_address=address_to_replace.nodeValue.replace('[at]', '@');
	address_to_replace.nodeValue=real_address; 
	address_to_replace.parentNode.setAttribute('href', 'mailto:'+real_address);
	}
	}
	}
}

function currentTime(){
	var a=Math.floor((new Date()-startTime)/10)/100;
	if (a%1==0) a+=".01";
	document.getElementById("endTime").innerHTML=a;
}

function authorized() {
	var x = (
	"You are now entering a secured section of the ProFinial web site.\n\nThe secured sections of the ProFinial web site are for authorized use only. Unauthorized access, attempted access, or use of this or any related system is a violation of the Dutch law and/or applicable international law, and may be subject to prosecution. Individuals using this web site are subject to having their activities on the site monitored and recorded.\n")
	var r = alert(x)
	{
	window.location="indexPF.html"
	}
}

window.onload=function(){
	clearTimeout(loopTime);
	view_address();
}
//-->

