   function onmouse(name,over)
   {
     if(window.document.images)
     {
       if (over) {
         document.images[name].src = "http://www.youngstudios.nl/pics/" + name + "o.png";
       }
       else {
        document.images[name].src = "http://www.youngstudios.nl/pics/" + name + ".png";
      }
    }
   }
   
    function preloadImages() {
    if(document.images) {
     if(!document.MM_p) document.MM_p=new Array();
      var i,j=document.MM_p.length,a=preloadImages.arguments;
  	  for(i=0; i<a.length; i++)
      if (a[i].indexOf("#")!=0) {
      document.MM_p[j]=new Image; document.MM_p[j++].src=a[i];
     }
    }
   }
 timerID = null;
	function ScrollUp(speed) {
		if (document.getElementById) {
			if (parseInt(txt.style.top) < 0)
				txt.style.top = parseInt(txt.style.top) + speed + "px";
			timerID = setTimeout("ScrollUp("+speed+")",15)
		}
	}
	
    function ScrollDown(speed) {
		if (document.getElementById) { 
			if (parseInt(txt.style.top) > cnt.offsetHeight - txt.offsetHeight) 
				txt.style.top = parseInt(txt.style.top) - speed + "px";
			timerID = setTimeout("ScrollDown("+speed+")",15)
		}
	}	
	function ScrollStop() {
		if (document.getElementById) {
			clearTimeout(timerID);
		}
	}
	function ScrollInit() {
		if (document.getElementById) {
			cnt = document.getElementById("contentbg");
		txt = document.getElementById("content");
		txt.style.top = 0;
		}
	}
	function OpenWin(url, width, height, scrollbars)   {    var left = (screen.width - width) / 2;    var top = (screen.height - height) / 2;    window.open(url,'','left='+left+',top='+top+',width='+width+',height='+height+',location=no,status=no,menu=no,scrollbars=no');   }
