// JavaScript Document
// L.W.M. Lobbezoo
// Soft2Connect
<!--
IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;


function OpenWindow(theURL) { 
	
	window.open(theURL,'',config='height=480,width=640, toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes,location=yes, directories=yes, status=yes')	;
	//window.open(theURL,winName,config='height=480,width=640, toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes,location=yes, directories=yes, status=yes')	;
}

function select_menu(id){

	identity=document.getElementById(id);
	identity.className= "contentsmenusel"; 
	identity.style.cursor = "hand";
} 

function deselect_menu(id){
	identity=document.getElementById(id);
	identity.className= "contentsmenu";
	identity.style.cursor = "auto";
} 

function MouseChange(){
    thumb1.style.cursor = "hand";
	thumb2.style.cursor = "hand";
	thumb3.style.cursor = "hand";
}

function MouseChange2(){
    thumb1.style.cursor = "auto";
	thumb2.style.cursor = "auto";
	thumb3.style.cursor = "auto"; 
}
// Example:
// simplePreload( '01.gif', '02.gif' ); 
function simplePreload()
{ 
  var args = simplePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}
//-->
