		function MouseOver(image, navSeparator1, navSeparator2, switchImageLeft, switchImageRight)
		{
			if (document.images)
			{
				document.images[image].src = "images/" + image + "Selected.gif";
				document.images[navSeparator1].src = "images/" + switchImageLeft + ".gif";
				document.images[navSeparator2].src = "images/" + switchImageRight + ".gif";
			}
		}

		function MouseOut(image, navSeparator1, navSeparator2, switchImageLeft, switchImageRight)
		{
			if (document.images)
			{
				document.images[image].src = "images/" + image + ".gif";
				document.images[navSeparator1].src = "images/" + switchImageLeft + ".gif";
				document.images[navSeparator2].src = "images/" + switchImageRight + ".gif";		
			}
		}	

		function popUp(url) {
			sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
			self.name = "mainWin"; 
		}
		function OpenWinCenter(popUrl, winName, popWidth, popHeight, otherFeatures)
		{
			pop_left = 0;
			pop_top = 0;
			scrCenter_x = screen.width/2;
			scrCenter_y = screen.height/2;
		
			pop_left = scrCenter_x - (popWidth/2);
			pop_top = scrCenter_y - (popHeight/2) - 30;
		
			if (otherFeatures != '')
			{
				otherFeatures = ',' + otherFeatures;
				popupWin = window.open(popUrl, winName, 'width=' + popWidth + ',height=' + popHeight + ',left=' + pop_left + ',top=' + pop_top + otherFeatures);
			} else
			{
				popupWin = window.open(popUrl, winName, 'width=' + popWidth + ',height=' + popHeight + ',left=' + pop_left + ',top=' + pop_top);
			}
		
			
			popupWin.focus();
		}
		
		function GetMouseOver(image)
		{
			if (document.images)
			{
				document.images[image].src = "images/" + image + "Hover.gif";
			}
		}

		function GetMouseOut(image)
		{
			if (document.images)
			{
				document.images[image].src = "images/" + image + ".gif";	
			}
		}			
		
