/*
	IE6 Patches:  Code to make all this work under IE6	
	IE6 cannot handle "hover" functionality on its own.  
		We need to help it with additional code, 	
		in this case, JavaScript 			 
*/
	 
	function showMenu(my_id) {
		if (document.all && document.getElementById) {
			ul = document.getElementById(my_id);
			ul.style.display = 'block';
			setTimeout("funcDummy",250);
		}
	}
	
	function hideMenu(my_id) {
		if (document.all && document.getElementById) {
			ul = document.getElementById(my_id);
			ul.style.display = 'none';
			setTimeout("funcDummy",250);
		}
	}


/*======================================================================*/
/*	 Function to generate the Left Menu Box items			*/
/*		Create arrays of menu items for each subject area	*/
/*======================================================================*/
	/* Menu details array for Left Menu Box */
	/* ===================================== */
	
	var menuLeftBar=new Array()

		menuLeftBar[0]=''; /* Entry [0] not shown in IE6 !!!
								So, this dummy entry !!! */
		menuLeftBar[1]='<a href="What Is New.htm">What is new?</a>';


		menuLeftBar[2]= '<a href="What-Site.htm" title="The motivation for this site...">Daydreams!</a>';
		menuLeftBar[3]='<a href="What-Else.htm" title="What other things I do in my spare time...:">The retired world</a>';
		menuLeftBar[4]='xxxx';	/* To mark end of list - essential */

function funcGenerateLeftMenuBox (parMenuTitle) {

	var I=0;
	var J;

	document.write ('<div  class="divLeftSideBarContainer">	');	

	I=0;
	while (parMenuTitle[I] != "xxxx") {

	/* for (I=0; I<6; I=I+1) { */
    if (parMenuTitle[I] != "")
    {
		document.write ('	<div  class="divLeftSideBarMenuItem"> '); 			
		document.write ('		<div class="divLeftSideBarTextBoxes"> ');		
		document.write(parMenuTitle[I]); 		
		document.write ('		</div> '); 

document.write ('<img src="Images/Sidebar Gradient Background 01-01 100x20px Normal.jpg"> '); 
		document.write (' 	</div> '); 
     }
		I++;
	} 

	document.write ('</div> ');

}

/*======================================================================*/
/*	 Function to generate the Main Dropdown menus			*/
/*======================================================================*/



function funcDummy() {
	}


/*======================================================================*/
/*	Code to generate Left Side Menu Box				*/
/*======================================================================*/

function funcGenerateLeftMenuBoxSaved () {
/*
==============================================================================
The code below has no effect.
The left Side Menu Box Items are generated from entries in a table. See above.
==============================================================================
	document.write ('<div  class="divLeftSideBarContainer">	');		

	document.write ('	<div  class="divLeftSideBarMenuItem"> '); 			
	document.write ('		<div class=divLeftSideBarTextBoxes> ');
	document.write ('			<a href="What is New.html" > '); 
	document.write ('				What is new... '); 
	document.write ('			</a> ');
	document.write ('		</div> '); 
	document.write ('		<img src="images/Sidebar Gradient Background 01-01 100x20px Normal.jpg"> '); 
	document.write (' 	</div> '); 


  document.write ('	<div  class="divLeftSideBarMenuItem"> '); 			
	document.write ('		<div class=divLeftSideBarTextBoxes> ');
	document.write ('			<a href="What is New.html" > '); 
	document.write ('				What is new... '); 
	document.write ('			</a> ');
	document.write ('		</div> '); 
	document.write ('		<img src="images/Sidebar Gradient Background 01-01 100x20px Normal.jpg"> '); 
	document.write (' 	</div> '); 


	document.write ('	<div  class="divLeftSideBarMenuItem"> '); 	
	document.write ('		<div class=divLeftSideBarTextBoxes> ');
	document.write ('			<a href="xxxxxxx.xxx"> ');
	document.write ('				More comments...');
	document.write ('		   </a> ');
	document.write ('		</div> ');
	document.write ('		<img src="images/Sidebar Gradient Background 01-01 100x20px Normal.jpg"> '); 
	document.write (' 	</div> '); 

	document.write ('	<div class="divLeftSideBarMenuItem"> ');			
	document.write ('		<div class=divLeftSideBarTextBoxes> ');
	document.write ('			<a href="xxxx.htm" > ');
	document.write ('				Punditry ');  
	document.write ('			</a> ');
	document.write ('		</div> '); 
	document.write ('		<img src="images/Sidebar Gradient Background 01-01 100x20px Normal.jpg"> '); 
	document.write (' 	</div> ');

	document.write ('</div> ');	

	document.write ('	<div  class="divLeftSideBarMenuItem"> '); 			
	document.write ('		<div class=divLeftSideBarTextBoxes> ');
	document.write ('			<a href="mailto:f.j.silva@hccnet.nl?subject=My views..." > ');
	document.write ('			<span class="style85"> ');
	document.write ('				Send your views ');
	document.write ('			</span></a> ');
	document.write ('		</div> '); 
	document.write ('		<img src="images/Sidebar Gradient Background 01-01 100x20px Normal.jpg"> '); 
	document.write (' 	</div> '); 
*/

	setTimeout("funcDummy", 500);
	}