//.NET Enterprise Server Feedback
//Version 1.1.

//*************************************************************************
//***Start: Localization section 1 of 1					***
//*************************************************************************

//-------------------------------------------------------------------------
//--- IMPORTANT: The values in this section vary for each deliverable. 	---
//---            Modify the values in this section.			---
//-------------------------------------------------------------------------

var fbParagraph_Text = 'For further MSXML assistance, post to the MSXML public newsgroup, <A HREF="http://go.microsoft.com/fwlink/?LinkId=4839">microsoft.public.xml.msxml-webrelease</A>.</P> <P>This newsgroup provides a forum for MSXML discussions and support and is monitored by Microsoft employees with experience working with MSXML. These include Microsoft Product Support Services (PSS) engineers, as well as SDK programmer writers experienced in XML documentation. You will also have the chance to interact with experienced MSXML developers outside of Microsoft.</P><P>Going forward, please use the newsgroup for all questions and concerns about MSXML.';

//-------------------------------------------------------------------------
//---These values do not need to be modified for US deliverables. 	---
//---(The text must be localized for non-US deliverables.)		---
//-------------------------------------------------------------------------

var fbTitle_Text = 'Support Contact for MSXML';
var fbCancel_Text = 'Cancel';

//*************************************************************************
//***End: Localization section 1 of 1					***
//*************************************************************************

var theObj;

function startFeedback(obj)
{
theObj=obj;
var stream;

stream = '<DIV ID="feedbackarea">'
	+ '<br>'
	+ '<hr COLOR="#99CCFF">'
	+ '<H6 STYLE="margin-top:0.5em;">' + fbTitle_Text + '</H6>'
	+ '<P>' + fbParagraph_Text + '</P>'
	+ '<P STYLE="width:97%;position:relative;float:left;clear:left;margin-bottom:-0.7em;margin-top:0em;" align=right><A HREF="#Feedback" ONCLICK=fbReload(' + obj.id + ')>' + fbCancel_Text
	+ '</A>&nbsp;</P><BR>'
	+ '<hr COLOR="#99CCFF">'	
	+ '</DIV>';

obj.innerHTML = stream;
}

//---Reloads window.---
function fbReload()
{
	window.location.reload(true);

}

