//********************************************//
//                      DUFC                  //
//	        JavaScript Routines           //
//    © 2003 Mediashop. All Rights Reserved   //
// www.mediashop.ie         info@mediashop.ie //
//********************************************//

// Image Preloader

	  function preloadImg(imgName,imgSrc) {
		   eval(imgName+' = new Image()');
	 	   eval(imgName+'.src = "'+imgSrc+'"');
	  }

// Image Changer

	  function changeImg(imgName,imgObj) {
	 	   document.images[imgName].src = eval(imgObj+'.src');
	  }


	  function toggle(item) {
	  	   obj=document.getElementById(item);
	  	   visible=(obj.style.display!="none")
	  	   if (visible) {
	  	   	  obj.style.display="none";
	  	   } else {
	   	  	  obj.style.display="block";
	  	   }
	  }

// Window popper

	  function openWindow(address,width,height,scroll,name) {
			window.open(address,name,"width="+width+",height="+height+",screenX=100,screenY=100,left=100,top=100,scrollbars="+scroll)
	  }

// End 
// © 2003
// Created with XBuilder (2.5.3727.1), Copyright (c) 1997-1999 Berry International, Inc. All Rights Reserved 
// Page: http://www.dufc.ie/media/js/routines.js 
// Date: 09/01/05 01:45 PM 

