DownloadB = new Image(77,20);
Download = new Image(77,20);
AccountB = new Image(69,20);
Account = new Image(69,20);
ForumB = new Image(57,20);
Forum = new Image(57,20);
ScreenshotsB = new Image(91,20);
Screenshots = new Image(91,20);


function preload_images(dir)
{
	if (document.images )
	{
		 DownloadB.src =dir+"/DownloadB.gif";  
		 Download.src =dir+"/Download.gif";  

		 AccountB.src =dir+"/AccountB.gif";       
		 Account.src = dir+"/Account.gif";

		 ForumB.src =dir+"/ForumB.gif";  
		 Forum.src =dir+"/Forum.gif"; 
		 
		 ScreenshotsB.src =dir+"/ScreenshotsB.gif";  
		 Screenshots.src =dir+"/Screenshots.gif";  
	}
	return false;
}

function ShowMouseOver(imgName)
 {
  if (document.images)
    {
      imgHover=eval(imgName + "B.src");
	  document.images[imgName].src = imgHover;
   }
}

function ShowNormal(imgName)
 {
   if (document.images)
    {
      imgNormal=eval(imgName + ".src");
      document.images[imgName].src= imgNormal;
 }
}

 function ShowInfo(imgName)
 {
	window.open(imgName, 'test', 'toolbar=no', 'directories=no', 'location=no', status=yes, menubar=no, resizable=no, scrollbars=no, 
				width='300', height='200')
 }