﻿function Show(CurrentPage, AllPages, obj)
{
	for(i=1; i<=AllPages;i++)
	{
		ConId="Page"+i;
		if(i!=CurrentPage)
		{	
			document.getElementById(ConId).className = 'Hide MinWidth';
			document.getElementById(i).className ='LinkNormal';
		}
		else
		{	
			document.getElementById(ConId).className = 'Show MinWidth ';
			obj.className ='LinkSelected';
		}
	}
}

