	function rollover(img)
	{
		pathPieces = img.src.split("/");
		curPath = '';
		for (i=0;i<pathPieces.length-1;i++)
			curPath = curPath + pathPieces[i] + '/';
			
		imgFN = pathPieces[i];
		imgFN = imgFN.substring(0, imgFN.indexOf('_'));
		
		img.src = curPath + imgFN + "_active.jpg";	
		
//		img.src = "../Images/" + img.name + "_active.gif";
/*		pathPieces = document.images[anchor.name].src.split("/");
		curPath = '';
		for (i=0;i<pathPieces.length-1;i++)
			curPath = curPath + pathPieces[i] + '/';
		document.images[anchor.name].src = curPath + anchor.name + "_ro.gif";*/
		
	}
	function rollout(img)
	{
		pathPieces = img.src.split("/");
		curPath = '';
		for (i=0;i<pathPieces.length-1;i++)
			curPath = curPath + pathPieces[i] + '/';

		imgFN = pathPieces[i];
		imgFN = imgFN.substring(0, imgFN.indexOf('_'));
	
		img.src = curPath + imgFN + "_normal.jpg";	
			
//		img.src = "../Images/" + img.name + "_normal.gif";
/*		pathPieces = document.images[anchor.name].src.split("/");
		curPath = '';
		for (i=0;i<pathPieces.length-1;i++)
			curPath = curPath + pathPieces[i] + '/';
		document.images[anchor.name].src = curPath + anchor.name + ".gif"*/
	}


	/*Actual
	function microsoftKeyPress(cmdbtnName)
	{
		if (window.event.keyCode == 13)
		{
			window.event.returnValue = false;
			document.all[cmdbtnName].click();
		}
	}
	
	if (navigator.appName == 'Netscape')
	{
		alert('Eneterd');
		window.captureEvents(Event.KEYPRESS);
		window.onKeyPress = "netscapeKeyPress()";
	}
	*/
	
	function netscapeKeyPress(e)
	{
		if (e.which == 13)
		{
			__doPostBack(cmdbtnName, '');
			e.returnValue = false;
		}
	}
	
	function microsoftKeyPress(cmdbtnName)
	{
		if (navigator.appName == 'Netscape')
		{
			//alert('Enterd');
			window.captureEvents(Event.KEYPRESS);
			window.onKeyPress = "netscapeKeyPress()";
		}
		
		if (window.event.keyCode == 13)
		{
			window.event.returnValue = false;
			document.all[cmdbtnName].click();
		}
	}
	
	
		
	
	
	
	
	
	/*
	function microsoftKeyPress(cmdbtnName)
	{
		if (window.event.keyCode == 13)
		{
			window.event.returnValue = false;
			document.all[cmdbtnName].click();
		}
	}
2
	function netscapeKeyPress(e)
	{
		if (e.which == 13)
		{
			__doPostBack('imgbtnGo', '');
			e.returnValue = false;
		}
	}

	function microsoftKeyPress()
	{
		if (window.event.keyCode == 13)
		{
			__doPostBack('imgbtnGo', '');
			window.event.returnValue = false;
		}
	}

	if (navigator.appName == 'Netscape')
	{
		window.captureEvents(Event.KEYPRESS);
		window.onKeyPress = "netscapeKeyPress()";
	}
	
	*/










