	// RollOver Buttons
	
	<!--
	
	if (document.images) {            // Active Images
	
				
				//Splash Page
				
	            nav_collection_on = new Image();      
	            nav_collection_on.src = "images/nav_collection_02.jpg";
	
	            nav_collection_off = new Image(); 
	            nav_collection_off.src = "images/nav_collection_01.jpg";   
				
				//---
				
				nav_designers_on = new Image();      
	            nav_designers_on.src = "images/nav_designers_02.jpg";
	
	            nav_designers_off = new Image(); 
	            nav_designers_off.src = "images/nav_designers_01.jpg";   
				
				//---
				
				nav_news_on = new Image();      
	            nav_news_on.src = "images/nav_news_02.jpg";
	
	            nav_news_off = new Image(); 
	            nav_news_off.src = "images/nav_news_01.jpg";   
				
				//---
				
				nav_about_on = new Image();      
	            nav_about_on.src = "images/nav_about_02.jpg";
	
	            nav_about_off = new Image(); 
	            nav_about_off.src = "images/nav_about_01.jpg";   
				
				//---
				
				nav_contact_on = new Image();      
	            nav_contact_on.src = "images/nav_contact_02.jpg";
	
	            nav_contact_off = new Image(); 
	            nav_contact_off.src = "images/nav_contact_01.jpg";   
				
				//---
				
				nav_vip_on = new Image();      
	            nav_vip_on.src = "images/header_nav_vip_02.jpg";
	
	            nav_vip_off = new Image(); 
	            nav_vip_off.src = "images/header_nav_vip_01.jpg";   
				
				//---
				
				nav_forum_on = new Image();      
	            nav_forum_on.src = "images/header_nav_forum_02.jpg";
	
	            nav_forum_off = new Image(); 
	            nav_forum_off.src = "images/header_nav_forum_01.jpg";   
				
				//---
				
				nav_footNotes_on = new Image();      
	            nav_footNotes_on.src = "images/header_nav_footNotes_02.jpg";
	
	            nav_footNotes_off = new Image(); 
	            nav_footNotes_off.src = "images/header_nav_footNotes_01.jpg";   
				
				//---
				
				
	
				
				     }
	
	// Function to 'activate' images.
	function imgOn(imgName) {
	        if (document.images) {
	            document[imgName].src = eval(imgName + "_on.src");
	        }
	}
	
	// Function to 'deactivate' images.
	function imgOff(imgName) {
	        if (document.images) {
	            document[imgName].src = eval(imgName + "_off.src");
	        }
	}
	
	// -->
	
	
	<!-- Begin
	function soopaPop(URL, width, height, resize, scroll) {
		day = new Date();
		id = day.getTime();
		posLeft = screen.width / 2;
		posTop = screen.height / 2;
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + scroll + ',location=0,statusbar=0,menubar=0,resizable=' + resize +',width=' + width + ',height=' + height + ',innerWidth=' + width + ',innerHeight=' + height + ',screenX=' + posLeft + ',screenY=' + posTop + ',left=' + posLeft + ',right=' + posTop + '');");
	}
	
	function trendsPop(URL, width, height, resize, scroll) {
		day = new Date();
		id = day.getTime();
		posLeft = (screen.width - 302)/2;
		posTop = (screen.height - 422)/2;
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + scroll + ',location=0,statusbar=0,menubar=0,resizable=' + resize +',width=' + width + ',height=' + height + ',innerWidth=' + width + ',innerHeight=' + height + ',screenX=' + posLeft + ',screenY=' + posTop + ',left=' + posLeft + ',right=' + posTop + '');");
	}
	

	function wishPop(URL, width, height, resize, scroll) {
		day = new Date();
		id = day.getTime();
		posLeft = (screen.width - 742)/2;
		posTop = (screen.height - 450)/2;
		eval("page" + id + " = window.open(URL, '" + id + "', 'name=wishlist,toolbar=0,scrollbars=' + scroll + ',location=0,statusbar=0,menubar=0,resizable=' + resize +',width=' + width + ',height=' + height + ',innerWidth=' + width + ',innerHeight=' + height + ',screenX=' + posLeft + ',screenY=' + posTop + ',left=' + posLeft + ',right=' + posTop + '');");
	}
	
	
	function playPop(URL, width, height, resize, scroll) {
		day = new Date();
		id = day.getTime();
		posLeft = (screen.width - 300)/2;
		posTop = (screen.height - 420)/2;
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + scroll + ',location=0,statusbar=0,menubar=0,resizable=' + resize +',width=' + width + ',height=' + height + ',innerWidth=' + width + ',innerHeight=' + height + ',screenX=' + posLeft + ',screenY=' + posTop + ',left=' + posLeft + ',right=' + posTop + '');");
	}
	
	function launch(url) {
  		w = screen.width;
  		h = screen.height - 36;
  		features = "width="+w+",height="+h;
  		features += ",resizable=1,left=0,top=0,screenX=0,screenY=0";
  		window.open(url, "", features);
	}
	
	var gmyWin = null;
	
	function wishTrigger(){
		gmyWin=openWishList('wishlist.php','wishList','height=450,width=765',gmyWin);
	}
	
	function openWishList(winURL, winName, winFeatures, winObj){
	var theWin; // this will hold our opened window 

	// first check to see if the window already exists
	if (winObj != null){
		// the window has already been created, but did the user close it?
		// if so, then reopen it. Otherwise make it the active window.
		if (!winObj.closed) {
			winObj.focus();
			return winObj;
		} 
		// otherwise fall through to the code below to re-open the window
	}

	// if we get here, then the window hasn't been created yet, or it
	// was closed by the user.
	theWin = window.open(winURL, winName, winFeatures); 
	return theWin;
	}
	// End -->

