	function toggleSize(editImg, moduleDivId)
	{
		var moduleDiv;
      var imgSrc;
											
		moduleDiv = document.getElementById(moduleDivId);
		myUrl = new String(editImg.src);
		
		if((myUrl.substring(myUrl.lastIndexOf("/")+1,myUrl.length)).toUpperCase() == "PLUS.GIF")
		{
			editImg.src = "./PortalFramework/Images/minus.gif"
			editImg.alt="Minimize";
			moduleDiv.style.display='';
		}
		else if((myUrl.substring(myUrl.lastIndexOf("/")+1,myUrl.length)).toUpperCase() == "MINUS.GIF")
		{
			editImg.src = "./PortalFramework/Images/plus.gif"
			editImg.alt="Maximize";
			moduleDiv.style.display='None';
		}
	}

   function Go(sUrl)
   {
      window.location.href = sUrl
   }
	
	function SelectAll(MeId,ObjId)
	{
	/*Example of Button and Call*/
	/*<a id="btnSelectAll" href="javascript:SelectAll('btnSelectAll','<%= listArticles.ClientId%>')">*/
	
		var oMe = document.getElementById(MeId);
		if (oMe.innerText == "Select All")
		{
			oMe.innerText = "De-Select All";
			var oSelect = document.getElementById(ObjId);
			for (i=0; i<oSelect.options.length; i++)
			{
				oSelect.options[i].selected = true;
			}
		}
		else
		{
			oMe.innerText = "Select All";
			var oSelect = document.getElementById(ObjId);
			for (i=0; i<oSelect.options.length; i++)
			{
				oSelect.options[i].selected = false;
			}
		}
	}