//the popup box for the proffesionale site
			confirmWidth=300;
			confirmHeight=200;
			xConfirmStart=300;
			yConfirmStart=100;
			confirmTitle="<p align='center'><b>Dit gedeelte van de website is uitsluitend bedoeld voor de beroepsbeoefenaar</b></p>";
			confirmText="<p align='center'>'AKKOORD', ga verder <br><br>'TERUG', keer terug naar de patientensite</p>";
			function okConfirm() {
				document.getElementById("confirm").style.top=-500;
				document.location.href="/Nitro/strattera.nl/home_bb.jsp?page=3165";
			}
			function abortConfirm() {
				document.getElementById("confirm").style.top=-500;
			}
			function confirmAlternative() {
				if(confirm("Dit is niet een goede browser om het te zien")) document.location.href="";
			}

//
ie5=(document.getElementById&&document.all&&document.styleSheets)?1:0;

nn6=(document.getElementById&&!document.all)?1:0;


if(ie5||nn6) {

	if(ie5) cs=2,th=30;
	else cs=0,th=20;


	document.write(
		"<div style='position:absolute;top:-800;left:0;z-index:100' id='confirm'>"+
			"<table style='border-style:outset;border-width: 2;border-color:#000000;background-color:#ffffff' cellpadding='5' cellspacing='"+cs+"' width='"+confirmWidth+"' height='"+confirmHeight+"' onmousedown='getxyRelativ()' onmousemove='moveConfirm()' onmouseup='moveStatus=0'>"+
				"<tr><td height='"+th+"' bgcolor='#7299c6'><font color='white'>"+confirmTitle+"</font></td></tr>"+
				"<tr><td>"+confirmText+"</td></tr>"+
				"<tr><td height='50' align='center'>"+
					"<input style='background-color:#7299c6;border-width:1;font-weight:bold;color:#ffffff;border-color:#718DBB;font-family:verdana, arial' type='button' value='Akkoord' onclick='okConfirm()' onfocus='if(this.blur)this.blur()'>"+
					"&nbsp;&nbsp;"+
					"<input style='background-color:#7299c6;border-width:1;font-weight:bold;color:#ffffff;border-color:#718DBB;font-family:verdana, arial' type='button' value='Terug' onclick='abortConfirm()' onfocus='if(this.blur)this.blur()'>"+
				"</td></tr>"+
			"</table>"+
		"</div>"
	);

}


//box size

function showConfirm() {

	moveStatus=0;

	xConfirm=xConfirmStart, yConfirm=yConfirmStart;

	if(ie5) {

		document.getElementById("confirm").style.left=xConfirm+document.body.scrollLeft;

		document.getElementById("confirm").style.top=yConfirm+document.body.scrollTop;

	}

	else if(nn6) {

		document.getElementById("confirm").style.left=xConfirm+window.pageXOffset;

		document.getElementById("confirm").style.top=yConfirm+window.pageYOffset;

	}

	else confirmAlternative();

}


//relative siituation

function getxyRelativ() {

	moveStatus=1;

	if(ie5) {

		xRelativ=event.clientX-xConfirm;

		yRelativ=event.clientY-yConfirm;

	}

}


//Box that can move


var xRelativ, yRelativ;

function moveConfirm() {

	if(ie5&&moveStatus>0) {

		xConfirm=document.getElementById("confirm").style.left=event.clientX+document.body.scrollLeft-xRelativ;

		yConfirm=document.getElementById("confirm").style.top=event.clientY+document.body.scrollTop-yRelativ;

	}

}