function MM_reloadPage(init) {  //Updated by PVII. Reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}

MM_reloadPage(true);

function MM_findObj(n, d) { // v4.01  
  var p,i,x;  if(!d) d=document;  
if((p=n.indexOf("?"))>0&&parent.frames.length) {  
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}  
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++)  
x=d.forms[i][n];  
  for(i=0;!x&&d.layers&&i<d.layers.length;i++)  
x=MM_findObj(n,d.layers[i].document);  
  if(!x && d.getElementById) x=d.getElementById(n); return x;  
}

function flevDivPositionValue(sDiv, sProperty) {  
	this.opera = (window.opera); // Opera 5+
	this.ns4 = (document.layers); // Netscape 4.x
	this.ns6 = (document.getElementById && !document.all && !this.opera); // Netscape 6+
	this.ie = (document.all);  // Internet Explorer 4+
    var sValue = ""; docObj = eval("MM_findObj('" + sDiv + "')"); if (docObj == null) {return 0;}
	if ((sProperty == "left") || (sProperty == "top")) {
		if (!this.ns4) {docObj = docObj.style;} 
		sValue = eval("docObj." + sProperty);
		if ((this.ie) && (sValue == "")) { // IE (on PC) bug with nested layers
			if (sProperty == "top") { sValue = eval(sDiv + ".offsetTop"); } 
			else { sValue = eval(sDiv + ".offsetLeft"); } 
		};
	}
	else {
		if (this.opera) {
			docObj = docObj.style;
			if (sProperty == "height") { sValue = docObj.pixelHeight; } 
			else if (sProperty == "width") { sValue = docObj.pixelWidth; } 
		}
		else if (this.ns4) {sValue = eval("docObj.clip." + sProperty);} 
		else if (this.ns6) {sValue = document.defaultView.getComputedStyle(docObj, "").getPropertyValue(sProperty); } 
	    else if (this.ie) { 
			if (sProperty == "width") { sValue = eval(sDiv + ".offsetWidth"); } 
			else if (sProperty == "height") { sValue = eval(sDiv + ".offsetHeight"); } 
		}
   	}
	sValue = (sValue == "") ? 0 : sValue; 
	if (isNaN(sValue)) { if (sValue.indexOf('px') > 0) { sValue = sValue.substring(0,sValue.indexOf('px')); } } 
	return parseInt(sValue); 
}

function flevPersistentLayer() { // v3.3, Marja Ribbers-de Vroed, FlevOOware
	var sD = arguments[0], oD = eval("MM_findObj('" + sD + "')"), iWW, iWH, iSX, iSY, iT = 10, sS = "";
	if (!document.layers) {oD = oD.style;}
	if (oD.tmpTimeout != null) {clearTimeout(oD.tmpTimeout);}
	var sXL = arguments[1], sXC = arguments[2], sXR = arguments[3], sYT = arguments[4], sYC = arguments[5], sYB = arguments[6];
	var iS = (arguments.length > 7) ? parseInt(arguments[7]) : 0, iPx = (arguments.length > 8) ? parseInt(arguments[8]) : 0;
	if (window.innerWidth) { // NS4, NS6 and Opera
		var oW = window; iWW = oW.innerWidth; iWH = oW.innerHeight; iSX = oW.pageXOffset; iSY = oW.pageYOffset; }
	else if (document.documentElement && document.documentElement.clientWidth) { // IE6 in standards compliant mode
		var oDE = document.documentElement; iWW = oDE.clientWidth; iWH = oDE.clientHeight; iSX = oDE.scrollLeft; iSY = oDE.scrollTop; }
	else if (document.body) { // IE4+
		var oDB = document.body; iWW = oDB.clientWidth; iWH = oDB.clientHeight; iSX = oDB.scrollLeft; iSY = oDB.scrollTop; }
	else {return;}
	var iCX = iNX = flevDivPositionValue(sD, 'left'), iCY = iNY = flevDivPositionValue(sD, 'top');
	if (sXL != "") {iNX = iSX + parseInt(sXL);} 
	else if (sXC != "") {iNX = Math.round(iSX + (iWW/2) - (flevDivPositionValue(sD, 'width')/2));}
	else if (sXR != "") {iNX = iSX + iWW - (flevDivPositionValue(sD, 'width') + parseInt(sXR));}
	if (sYT != "") {iNY = iSY + parseInt(sYT);}
	else if (sYC != "") {iNY = Math.round(iSY + (iWH/2) - (flevDivPositionValue(sD, 'height')/2));}
	else if (sYB != "") {iNY = iSY + (iWH - flevDivPositionValue(sD, 'height') - parseInt(sYB));}
	if ((iCX != iNX) || (iCY != iNY)) {
		if (iS > 0) {
			if (iPx > 0) { iT = iS;
				var iPxX = iPx, iPxY = iPx, iMX = Math.abs(iCX - iNX), iMY = Math.abs(iCY - iNY);
				// take care of diagonal movement
				if (iMX < iMY) {iPxY = (iMX != 0) ? ((iMY/iMX)*iPx) : iPx;}
				else {iPxX = (iMY != 0) ? ((iMX/iMY)*iPx) : iPx;}
				if (iPxX >= iMX) {iPxX = Math.min(Math.ceil(iPxX), iPx);}
				if (iPxY >= iMY) {iPxY = Math.min(Math.ceil(iPxY), iPx);}
				// temporary X/Y coordinates
				if ((iCX < iNX) && (iCX + iPxX < iNX)) {iNX = iCX + iPxX;}
				if ((iCX > iNX) && (iCX - iPxX > iNX)) {iNX = iCX - iPxX;}
				if ((iCY < iNY) && (iCY + iPxY < iNY)) {iNY = iCY + iPxY;}
				if ((iCY > iNY) && (iCY - iPxY > iNY)) {iNY = iCY - iPxY;} }
			else { 
				var iMX = ((iNX - iCX) / iS), iMY = ((iNY - iCY) / iS); 
				iMX = (iMX > 0) ? Math.ceil(iMX) : Math.floor(iMX); iNX = iCX + iMX; 
				iMY = (iMY > 0) ? Math.ceil(iMY) : Math.floor(iMY); iNY = iCY + iMY; } }
		if ((parseInt(navigator.appVersion)>4 || navigator.userAgent.indexOf("MSIE")>-1) && (!window.opera)) {sS="px";}
		if (iMX != 0) {eval("oD.left = '" + iNX + sS + "'");}
		if (iMY != 0) {eval("oD.top = '" + iNY + sS + "'");} }
	var sF = "flevPersistentLayer('" + sD + "','" + sXL + "','" + sXC + "','" + sXR + "','" + sYT + "','" + sYC + "','" + sYB + "'," + iS + "," + iPx + ")";
	oD.tmpTimeout = setTimeout(sF,10);
}

function flevInitPersistentLayer() { // v3.3, Marja Ribbers-de Vroed, FlevOOware
	if (arguments.length < 8) {return;}
	var sD = arguments[0]; if (sD == "") {return;}
	var	oD = eval("MM_findObj('" + sD + "')"); if (!oD) {return;}
	var iCSS = parseInt(arguments[1]);
	var sXL = arguments[2], sXC = arguments[3], sXR = arguments[4], sYT = arguments[5], sYC = arguments[6], sYB = arguments[7];
	var iS = (arguments.length > 8) ? parseInt(arguments[8]) : 0, iPx = (arguments.length > 9) ? parseInt(arguments[9]) : 0;
	if (iCSS != 0) { if (!document.layers) {oD = oD.style;} sXL = parseInt(oD.left), sYT = parseInt(oD.top);}
	var sF = "flevPersistentLayer('" + sD + "','" + sXL + "','" + sXC + "','" + sXR + "','" + sYT + "','" + sYC + "','" + sYB + "'," + iS + "," + iPx + ")";
	eval(sF);
}

function sureBomb(url)
{
if (confirm(' Are you sure?\n (This is NOT recommended)')) {if (confirm(' SO, you are ABSOLUTELY sure?')) {parent.window.location=url} else {return false;}}
}

function usingFrames()
	{

	return (parent.frames.length);
	}


//if (!usingFrames()) {window.location.replace("../home.html")}

function openWin(url, width, height) 
{
        var win = window.open(url, 'Koertcam', 'resizable=no,scrollbars=no,status=YES,directories=no,toolbar=no,status=no,menubar=no,width='+width+',height='+height);
}

function preload_gif()
{
bName=navigator.appName;
bVer=parseInt(navigator.appVersion);
ver="nn";
if (bName=="Netscape" && bVer>=3) ver= "n4";
else if (bName=="Netscape" && bVer==3) ver= "n3";
	else if (bName== "Netscape" && bVer==2) ver= "n2";
		else if (bName=="Microsoft Internet Explorer" && bVer <4) ver="e3";
		else if (bName=="Microsoft Internet Explorer" && bVer <5) ver="e4";
		else if (bName=="Microsoft Internet Explorer" && bVer >=5) ver="e5";		



if (ver=="n3" | ver=="n4" | ver=="e4" | ver=="e5")
{
 var dir="../shared/bitbet";


	popd=new Image(50,50);
	popd.src="../shared/popd.gif";
 
	bt_koert=new Image(50,50);
	bt_koert.src="../shared/bt_koert.gif";

	postd=new Image(50,50);
	postd.src="../shared/postd.gif";
 
	bt_email=new Image(50,50);
	bt_email.src="../shared/bt_email.gif";

	workd=new Image(50,50);
	workd.src="../shared/workd.gif";
 
	bt_work=new Image(50,50);
	bt_work.src="../shared/bt_work.gif";

	camerad=new Image(50,50);
	camerad.src="../shared/camerad.gif";

	bt_camera=new Image(50,50);
	bt_camera.src="../shared/bt_camera.gif";

}
} 


//function imageChange(pic, change,tname, status) 
 // {
 // window.status = status;
 // }


 
function imageChange(pic, change,tname, status) 
  {
  document.images[pic].src = "../shared/" + change + "";
 if (tname!="") {document.images['btext'].src="../shared/"+tname+"";}
 window.status = status;
  }
  
function print_bomb()                                                                                                                       {
        document.write("<div id=\"bomb\" style=\"position:absolute; width: 45;                                                                                               z-index:1; left:0;                                                                                                                             bottom: 0 px; border: 0px solid #000000;  visibility: visible\">"); 











	                      document.write("<a  target=\"_top\"                                                                                                                                                                                                                                                                                                                                                                    onMouseOver=\"window.status='Met dank aan mijn broertje Koert - the most innovative web-kid on earth: www.koert.com'; return true;\"  onMouseOut=\"window.status=''; return true;\" onClick=\"vingerafdruk.jpg; return false;\"><img src=\"Menu_bestanden/zwartachtergrond.jpg\" width=\"173\" height=\"680\" alt=\"\" border=\"1\"                       vspace=\"0\"                                                                            hspace=\"0\"></a>");                                                                         
document.write("</div>");
                                                                                                                                                                                                                                                                            	flevInitPersistentLayer('bomb',0,'','','','0','','',0);

}                                                                                    

function print_koertindex()                                                                                                                          {
document.write("<div id=\"koertindex\" style=\"position:absolute; width: 0;                                                                                                             z-index:2; left:2;                                                                                                                                      top: 0px; border: 0px solid #000000;  visibility: visible\">");                                                                                                                                                                                                                                  











document.write("             <table width=\"250\" height=100% border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.write("            <tr valign=\"bottom\"><td align=center height=\"0\" width=\"150\" ><span class=\"smallnav\">");                                                                                                                          


















document.write(" 	<font size=1></font> <a href=\"http://www.handresearch.com/hand/Evolutie/handlezen.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/portretvlagEngels.jpg\" alt=\"De Nederlandse versie van dit web-avontuur!\" hspace=\"2\" vspace=\"0\"                          height=\"83\" width=\"165\"></a><BR>");







document.write(" <font size=1><BR></font><a href=\"http://www.handresearch.com\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonintroductieEngels.jpg\" alt=\"INTRODUCTION: Reveal our hands the future of human kind? Are are we being mislead by the 'Barnum-effect' and the 'Dodo-effect?\" hspace=\"4\" vspace=\"0\"                          height=\"7\" width=\"165\"></a>");


document.write(" 	<font size=1><BR></font> <a href=\"http://www.handresearch.com/hand/Evolutie/imagoEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonimagoEngels.jpg\" alt=\"THE IMAGE OF HANDANALYSIS: How come that the more serious aspects of handanalysis are being ignored?\" hspace=\"4\" vspace=\"0\"                          height=\"7\" width=\"165\"></a><BR>");




document.write("  <font size=1><BR></font><a href=\"http://www.handresearch.com/hand/Evolutie/evoEngels.htm\" >                                                                       <img border=0 src=\"Menu_bestanden/buttonevohandEngels.jpg\" alt=\"EVOLUTIONARY HANDANALYSIS: How come that the most important functional aspects of our hand reveal information about our health?\" hspace=\"4\" vspace=\"0\"                          height=\"7\" width=\"165\"></a><BR>");


document.write(" <font size=1><BR></font> <a href=\"http://www.handresearch.com/hand/Evolutie/functieEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonfunctieEngels.jpg\" alt=\"THE FUNCTION OF THE HAND: The meaning of the various aspects of the hand in the perspective of evolution!\" hspace=\"3\" vspace=\"0\"                          height=\"9\" width=\"165\"></a><BR>");


document.write("  <a href=\"http://www.handresearch.com/hand/Evolutie/sekseEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonsekseEngels.jpg\" alt=\"MALE-FEMALE DIFFERENCES: The differences between the hands of males and females show that males are more similar to apes!\" hspace=\"3\" vspace=\"0\"                          height=\"9\" width=\"165\"></a><BR>");


document.write("  <a href=\"http://www.handresearch.com/hand/Evolutie/medischEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonmedischEngels.jpg\" alt=\"MEDICAL HANDANALYSIS: Which are the hand features that reveal reliable information about our health?\" hspace=\"3\" vspace=\"0\"                          height=\"9\" width=\"165\"></a><BR>");


document.write(" <font size=1><BR></font> <a href=\"http://www.handresearch.com/hand/Evolutie/10jaarEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/button10jaarEngels.jpg\" alt=\"10 YEARS HANDANALYSIS RESEARCH: What is the future of handanalysis?\" hspace=\"4\" vspace=\"0\"                          height=\"18\" width=\"165\"></a>");


document.write("  <a href=\"http://www.handresearch.com/hand/Evolutie/overzichtEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonoverzichtEngels.jpg\" alt=\"AN OVERVIEW: An overview of the handanalysis studies which I have executed in the past 10 years!\" hspace=\"3\" vspace=\"0\"                          height=\"9\" width=\"165\"></a><BR>");


document.write(" <a href=\"http://www.handresearch.com/hand/Evolutie/autismeEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonautismeEngels.jpg\" alt=\"SPEICIALIZATION 1: AUTISM: Is it possible to diagnosis autism from the hand?\" hspace=\"3\" vspace=\"0\"                          height=\"9\" width=\"165\"></a><BR>");


document.write(" <a href=\"http://www.handresearch.com/hand/Evolutie/neuroEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonneuroticismeEngels.jpg\" alt=\"SPECIALIZATION 2: NEUROTICISM: Reveal hands reliable information about the emotional sensitivity of a person?\" hspace=\"3\" vspace=\"0\"                          height=\"9\" width=\"165\"></a><BR>");


document.write(" <a href=\"http://www.handresearch.com/hand/Evolutie/linksEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonlinksEngels.jpg\" alt=\"SPECIALIZATION 3: LEFT-HANDED: The differences between the left- and right hand reveal something about our inclination for left- or right handedness.\" hspace=\"3\" vspace=\"0\"                          height=\"14\" width=\"165\"></a><BR>");


document.write(" <a href=\"http://www.handresearch.com/hand/Evolutie/psychoEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttonpsychologieEngels.jpg\" alt=\"HANDANALYSIS PSYCHOLOGY: More about the psychology between the handanalyst and the cliënt!\" hspace=\"4\" vspace=\"0\"                          height=\"7\" width=\"165\"></a>");


document.write(" 	<font size=1><BR></font> <a href=\"http://www.handresearch.com/hand/Evolutie/infoEngels.htm\" >                                                                                  <img border=0 src=\"Menu_bestanden/buttoninfotainmentgeelEngels.jpg\" alt=\"HANDANALYSIS INFOTAINMENT: An amusing way to learn more about handanalysis ...\" hspace=\"4\" vspace=\"0\"                          height=\"7\" width=\"165\"></a><BR>");






document.write(" 	<font size=1><BR></font> <a href=\"mailto:mensvoor@worldonline.nl\" >                                                                                  <img border=0 src=\"Menu_bestanden/mail.jpg\" alt=\"U mag reageren via e-mail maar u kunt ook mee discusiëren in de discussie groep! Lees verder bij de discussiestellingen ...\" hspace=\"47\" vspace=\"0\"                          height=\"36\" width=\"65\"></a><BR>");









document.write(" 	<font size=1><BR></font>                                                                                   <img border=0 src=\"Menu_bestanden/buttoncopyright.jpg\"  hspace=\"3\" vspace=\"0\"                          height=\"9\" width=\"166\"></a>");





document.write("</table></div>  ");








flevInitPersistentLayer('koertindex',0,'','','','7','','',30);
}






