/**************************************************************

	Script		: List
	Version		: 1
	Authors		: Lisa Noble
	Desc		:  
	Licence		:  

**************************************************************/

	function view(obj){
		getRef('ThumbnailSet1').style.display = 'none';
		getRef('ThumbnailSet2').style.display= 'none';
		getRef('ThumbnailSet3').style.display= 'none';	
		getRef('ThumbnailSet4').style.display= 'none';	
		getRef('ThumbnailSet5').style.display = 'none';
		getRef('ThumbnailSet6').style.display= 'none';
	
	

				
		getRef(obj).style.display = 'block';
	}
	
	function getRef(obj){
		return (typeof obj == "string") ? document.getElementById(obj) : obj;
	}




/*************************************************************/


