		function CommonOpener_OpenObject(_nUserID, _nClassID, _nObjectID, _nOpenerMode, _strMiscQSArgs, _strHeight, _strWidth, _bIsFancyWindow)
		{
			if (_strMiscQSArgs == null)
			{
				_strMiscQSArgs = "";
			}

			var strURL = "/portal/server.pt?space=Opener&control=OpenObject&cached=true&";
			strURL = strURL + "parentname=CommunityPage&";
			strURL = strURL + "parentid=2&"
			strURL = strURL + "in_hi_ClassID=" + _nClassID + "&";
			strURL = strURL + "in_hi_ObjectID=" + _nObjectID + "&";
			strURL = strURL + "in_hi_OpenerMode=" + _nOpenerMode + "&";
			strURL = strURL + "in_hi_userid=" + _nUserID;
			if("" != _strMiscQSArgs)
				strURL = strURL  + "&" + _strMiscQSArgs;

			if (_strHeight == null || _strWidth == null || _bIsFancyWindow == null)
			{
				window.location = strURL;
			}
			else
			{
				var strWindowName = String(_nClassID) + "_" + String(_nObjectID);
				PTWindowUtil.openWindow(strURL, strWindowName, _strHeight, _strWidth, _bIsFancyWindow);
			}
		}
function CommonOpener_CreateExtObject(_nUserID, _nClassID, _nFolderID, _strProvEnglishName, _strMiscQSArgs, _strHeight, _strWidth, _bIsFancyWindow)
		{
			if (_strMiscQSArgs == null)
			{
				_strMiscQSArgs = "";
			}

			var strURL = "/portal/server.pt?space=Opener&control=OpenObject&cached=true&in_hi_OpenerMode=0&";
			strURL = strURL + "parentname=CommunityPage&";
			strURL = strURL + "parentid=2&";
			strURL = strURL + "in_hi_ClassID=" + _nClassID + "&";
			strURL = strURL + "in_hi_FolderID=" + _nFolderID + "&";
			strURL = strURL + "in_hi_ProvEngName=" + _strProvEnglishName + "&";
			strURL = strURL + "in_hi_userid=" + _nUserID;
			if("" != _strMiscQSArgs)
				strURL = strURL  + "&" + _strMiscQSArgs;

			if (_strHeight == null || _strWidth == null || _bIsFancyWindow == null)
			{
				window.location = strURL;
			}
			else
			{
				var strWindowName = String(_nClassID) + "_" + String(_nFolderID);
				PTWindowUtil.openWindow(strURL, strWindowName, _strHeight, _strWidth, _bIsFancyWindow);
			}
		}

		function CommonOpener_CreateNonExtObject(_nUserID, _nClassID, _nFolderID, _strMiscQSArgs, _strHeight, _strWidth, _bIsFancyWindow)
		{
			if (_strMiscQSArgs == null)
			{
				_strMiscQSArgs = "";
			}

			var strURL = "/portal/server.pt?space=Opener&control=OpenObject&cached=true&in_hi_OpenerMode=0&";
			strURL = strURL + "parentname=CommunityPage&";
			strURL = strURL + "parentid=2&";
			strURL = strURL + "in_hi_ClassID=" + _nClassID + "&";
			strURL = strURL + "in_hi_FolderID=" + _nFolderID + "&";
			strURL = strURL + "in_hi_userid=" + _nUserID;
			if("" != _strMiscQSArgs)
				strURL = strURL  + "&" + _strMiscQSArgs;

			if (_strHeight == null || _strWidth == null || _bIsFancyWindow == null)
			{
				window.location = strURL;
			}
			else
			{
				var strWindowName = String(_nClassID) + "_" + String(_nFolderID);
				PTWindowUtil.openWindow(strURL, strWindowName, _strHeight, _strWidth, _bIsFancyWindow);
			}
		}

		function CommonOpener_OpenObject(_nUserID, _nClassID, _nObjectID, _nOpenerMode, _strMiscQSArgs, _strHeight, _strWidth, _bIsFancyWindow)
		{
			if (_strMiscQSArgs == null)
			{
				_strMiscQSArgs = "";
			}

			var strURL = "/portal/server.pt?space=Opener&control=OpenObject&cached=true&";
			strURL = strURL + "parentname=CommunityPage&";
			strURL = strURL + "parentid=2&"
			strURL = strURL + "in_hi_ClassID=" + _nClassID + "&";
			strURL = strURL + "in_hi_ObjectID=" + _nObjectID + "&";
			strURL = strURL + "in_hi_OpenerMode=" + _nOpenerMode + "&";
			strURL = strURL + "in_hi_userid=" + _nUserID;
			if("" != _strMiscQSArgs)
				strURL = strURL  + "&" + _strMiscQSArgs;

			if (_strHeight == null || _strWidth == null || _bIsFancyWindow == null)
			{
				window.location = strURL;
			}
			else
			{
				var strWindowName = String(_nClassID) + "_" + String(_nObjectID);
				PTWindowUtil.openWindow(strURL, strWindowName, _strHeight, _strWidth, _bIsFancyWindow);
			}
		}
	/** The object that holds the safe variables. Store the vars as properties on the object, like a hashtable. **/
		var gSafeJSVarContainer = new Object();
		/** Define a new safe variable, pass the in the name and the value.Returns true if successful, method call will fail if the value is invalid. **/
		function addSafeVar(strName, oValue) {
			gSafeJSVarContainer[strName] = oValue;
			return true;
		}
		/** Retrieve a safe var. Returns false if the variable is undefined  or if the value is actually false, but safe vars shouldn't be usedto store simple boolean values anyway. **/
		function getSafeVar(strName) {
			var temp = gSafeJSVarContainer[strName];
			if (temp) { return temp; }
			else { return false;}
		}
		/** Retrieve a safe var, if the variable is undefined an alert will showwith the name of the variable. Use this method to retrieve criticalvariables. **/
		function getSafeVarWarn(strName) {
			var temp = gSafeJSVarContainer[strName];
			if (temp) { return temp; }
			else { alert('Safe Variable: '+strName+' is not defined!'); }
		}
		function buildURLFromTemplate(strID)
		{
			var arArgs = strID.split(',');
		if(!arArgs){
		  alert('Invalid menu ID');
		  return null; }
		if(arArgs[0] == 'C'){
		  var strCommURL = '/portal/server.pt?space=CommunityPage&cached=true&parentname=CommunityPage&parentid=2&in_hi_userid=442121&control=SetCommunity&CommunityID='+arArgs[1]+'&PageID='+arArgs[2];
			if(arArgs.length > 3) { strCommURL += '&ProfileID='+arArgs[3]; } return strCommURL;  	} else if (arArgs[0] == 'M') {
		  return '/portal/server.pt?space=MyPage&cached=true&parentname=CommunityPage&parentid=2&in_hi_userid=442121&control=SetPage&PageID='+arArgs[1];
		} else if (arArgs[0] == 'SM') {
		  return '/portal/server.pt?space=SiteMap&parentname=CommunityPage&parentid=2&in_hi_userid=442121&control=SetSiteMap&CommunityID='+arArgs[1]+'&Mode='+arArgs[2]+(eval(arArgs[3]) ? '&Preview=' : '');
		} else if (arArgs[0] == 'S') {
		  return null;
		} else if (arArgs[0] == 'E') {
			var params = '';
			if ( arArgs.length > 1 ) {
			  for ( var i = 2; i < arArgs.length; i++ ) {
				params += '&' + arArgs[i];
			  } }
		  return '/portal/server.pt?space='+arArgs[1]+'&parentname=CommunityPage&parentid=2&in_hi_userid=442121' + params;
		} else if (arArgs[0] == 'D') {
		  return '/portal/server.pt?space=Dir&parentname=CommunityPage&parentid=2&in_hi_userid=442121&control=OpenSubFolder&DirMode='+arArgs[1]+'&subfolderID='+arArgs[2];
		} else if (arArgs[0] == 'G1') {
			var params = '';
			if ( arArgs.length > 1 ) {
			  for ( var i = 2; i < arArgs.length; i++ ) {
				params += '&' + arArgs[i];
			  } }
		  return '/portal/server.pt?space='+arArgs[1]+'&parentname=CommunityPage&parentid=2&in_hi_userid=442121' + params;
		} else {
			alert('URL Type is not defined');
			return null; }
		}
		function templateURLRedirect(templateURL) {
		  if (templateURL == null) { return null; }
		  var arArgs = templateURL.split(',');
		 if (arArgs[0] == 'UP') {
		   CommonOpener_OpenObject(442121,1,arArgs[1],2);
		} else if (arArgs[0] == 'DO') {
		   CommonOpener_OpenObject(442121,18,arArgs[1],2, null, 600, 800, true);
		} else if (arArgs[0] == 'F') {
		  window.open(arArgs[1], 'extLink', null);
		 } else {
		   window.location = buildURLFromTemplate(templateURL);
		 }

		}

// Omniture & page tracking info
		var _eit__ApplicationName = "bryandevpt5.LI.com";
		var _eit__CommunityName = "About LI";
		var _eit__CommunityID = "330";
		var _eit__PageID = "-330";
		var _eit__directory = "";
		var _eit__PageType = "My Community";
		var _eit__PageName = "About LI home page";
		var _eit__PtUserName = "bjm13273";
		var _eit__PtUserID = "442121";
		var s_server = "143.193.71.141";

		var _eit_trackmetrics = "";

		var _eit__hashMudID = "9981061094951505551";

		/* START - Set up a singleton Page-Level Object */
		var _eit_mnu3_pObj = new Object();
		_eit_mnu3_pObj.arHideable = null;
		_eit_mnu3_pObj.arHiding = null;
		_eit_mnu3_pObj.arrIDs = new Array();
		_eit_mnu3_pObj.sCurrent = "";
		_eit_mnu3_pObj.bJustClicked = false;
		_eit_community = "Community";

		_eit__AdminFolderName = "";
		_eit__AdminFolderId = "";

		var _eit_User_Settings_Open_doc_window=1;
		setCookiesForBreadcrumb();

		function showsearchoptions(showit) {
			var obrdr = document.getElementById("searchformborder");
			var ooptions = document.getElementById("searchoptions");
			if (showit) {
				obrdr.style.display = "block";
				ooptions.style.display = "block";
			} else {
				obrdr.style.display = "none";
				ooptions.style.display = "none";
			}
		}

