	var gURL = null;
	function __EmbedHelpTag(xPic1,xPic2,xWidth,xHeight,xBorder,xParam, xsURL, xAltString, xfeature)
	{
		var sWidth = ' ';
		var sHeight = ' ';
		var sBorder = ' ';
		gURL = xsURL+ "?" + xParam+"&WI_StartUrl="+escape(self.location.href);
		if(top.name==null || top.name=="")top.name="WIBrowserShare"+(new Date()).getTime();
		gURL = gURL+"&WI_BrowserShareWindowName="+top.name;
		if(self.WITranslatePort != null)gURL = gURL+"&WI_NewPortNumber="+self.WITranslatePort;
		if(self.WITranslateHostname != null)gURL = gURL+"&WI_NewHostname="+self.WITranslateHostname;
		if(self.WITranslateUrl != null)gURL = gURL+"&WI_TranslateUrl="+self.WITranslateUrl;
		gURL = gURL+"&WI_OriginalHost="+self.location.host;

		if(xWidth != 0 ) sWidth = ' WIDTH='+xWidth;
		if(xHeight != 0 ) sHeight = ' HEIGHT='+xHeight;
		if(xBorder != null ) sBorder = ' BORDER='+xBorder;
		self.document.write('<form onsubmit="displayHelpWindow(\'' + xfeature + '\'); return false;">');
		self.document.write('<input type="image" src="' + xPic1+'"'+sWidth+sHeight+sBorder+' alt="'+xAltString+'">');
		self.document.write('</form>'); 
	}

	function __EmbedHelpTagLink(xPic1,xPic2,xWidth,xHeight,xBorder,xParam, xsURL, xAltString, xfeature)
	{
		var sWidth = ' ';
		var sHeight = ' ';
		var sBorder = ' ';
		gURL = xsURL+ "?" + xParam+"&WI_StartUrl="+escape(self.location.href);
		if(top.name==null || top.name=="")top.name="WIBrowserShare"+(new Date()).getTime();
		gURL = gURL+"&WI_BrowserShareWindowName="+top.name;
		if(self.WITranslatePort != null)gURL = gURL+"&WI_NewPortNumber="+self.WITranslatePort;
		if(self.WITranslateHostname != null)gURL = gURL+"&WI_NewHostname="+self.WITranslateHostname;
		if(self.WITranslateUrl != null)gURL = gURL+"&WI_TranslateUrl="+self.WITranslateUrl;
		gURL = gURL+"&WI_OriginalHost="+self.location.host;

		if(xWidth != 0 ) sWidth = ' WIDTH='+xWidth;
		if(xHeight != 0 ) sHeight = ' HEIGHT='+xHeight;
		if(xBorder != null ) sBorder = ' BORDER='+xBorder;
		self.document.write('<a href="javascript:" onclick="displayHelpWindow(\'' + xfeature + '\')">');
		self.document.write('<img src="' + xPic1+'"'+sWidth+sHeight+sBorder+' alt="'+xAltString+'">');
		self.document.write('</a>'); 
	}

	function __EmbedHelpTagNoForm(xPic1,xPic2,xWidth,xHeight,xBorder,xParam, xsURL, xAltString, xfeature)
	{
		var sWidth = ' ';
		var sHeight = ' ';
		var sBorder = ' ';
		gURL = xsURL+ "?" + xParam+"&WI_StartUrl="+escape(self.location.href);
		if(top.name==null || top.name=="")top.name="WIBrowserShare"+(new Date()).getTime();
		gURL = gURL+"&WI_BrowserShareWindowName="+top.name;
		if(self.WITranslatePort != null)gURL = gURL+"&WI_NewPortNumber="+self.WITranslatePort;
		if(self.WITranslateHostname != null)gURL = gURL+"&WI_NewHostname="+self.WITranslateHostname;
		if(self.WITranslateUrl != null)gURL = gURL+"&WI_TranslateUrl="+self.WITranslateUrl;
		gURL = gURL+"&WI_OriginalHost="+self.location.host;

		if(xWidth != 0 ) sWidth = ' WIDTH='+xWidth;
		if(xHeight != 0 ) sHeight = ' HEIGHT='+xHeight;
		if(xBorder != null ) sBorder = ' BORDER='+xBorder;
		self.document.write('<input type="image" src="' + xPic1+'"'+sWidth+sHeight+sBorder+' alt="'+xAltString+'"  onClick="displayHelpWindow(\'' + xfeature + '\');">');
	}

	/****************************************************************************************************
	*	window.open(url,name,[features,[replace]]);														*	
	*   url        url to be displayed on the window.													*
	*   name       Name of the window																	*	
	*	features   A String that specifies which features of a standard window are to appear			*
	*              in the new window. This arqument is optional; if is not specified, the the			*
	*			   new window will have all standard features.											*
	*																									*
	*			   toolbar     The browser toolbar, with Back and Forward buttons etc.,					*
	*			   location    The input field for entering URLs directly into the browser				*
	*			   status	   The status line.															*
	*			   menubar     The menu bar.															*
	*			   scrollbars  This feature enables horizontal and vertical scrollbars when				*
	*			               they are necessary.														*
	*			   resizable   If this feature is not present or is set to no, then the window			*
	*			               will not resize handles around its border. (Depending on the				*
	*						   platform, the user may still have ways to resize the window).			*
	*			   width	   This feature must be followed by a value that specifies the width		*
	*						   of the window in pixels.													*
    *              height	   This feature must be followed by a value that specifies the height		*
	*						   of the window in pixels.													*			   
	*			   Note : For all the parameters except width and height possible values or (yes/no)	* 
	*																									*
	*	replace    An optional Boolean argument that specifies whether the url that is loaded			*
	*	           into the new page should create a new entry in the window's browsing history			*
	*			   or replace the current entry in the browsing history. If this argument is true		*
	*			   then no new histroy entry will be created.											*
	*																									*		
	*   Note :In this features parameter can be modified. Do not modify any other parameter	*	
	*****************************************************************************************************/
	function displayHelpWindow(xfeature)
	{
	    var dt = new Date();
		var win = window.open("","WebInteractionHelp",xfeature);
		if(win != null && win.bHelpInProgress != null ) return;
		win = window.open(gURL + "&t=" + dt.getTime(),"WebInteractionHelp",xfeature);
	} 
	
	