﻿// JScript File

$(function()
	{	var testStr = $("#PageInfoText").text();
	 
		testStr = $.trim(testStr);
		
		if(testStr.length != 0 && testStr != null )
		{
			$("#PageInfo").css("visibility", "visible");
		}
		else
		{
			$("#PageInfo").css("visibility", "hidden");
		}
	});