// VERSION 9226 // This script works with IE 3.x //************************** LOCALIZATION VARIABLES *************************** // Variables for Feedback links var L_FeedbackLink_TEXT = "Send feedback to Visual Studio"; var L_MessageLink_TEXT = "Microsoft Knowledgebase Link"; // Variables for Expand-Collapse functions var L_Expand_TEXT = "Expand/Collapse functionality: Your browser does not support the functionality in this topic. You may install a browser that does at "; var L_Expand_URL = "http://www.microsoft.com/windows/IE/"; //*************************** END LOCALIZATION ******************************** var baseUrl = jsPath; //jsPath comes from the dtuelink.js var emailalias = "vsdocs"; //***************************** END VARIABLES ********************************* // **************************************************************************** // * Expand-Collapse * // **************************************************************************** function makeExpandable(title, level){ document.write("

" + L_Expand_TEXT + "" + L_Expand_URL + ".

"); } // **************************************************************************** // * Graphic Animation * // **************************************************************************** function insertAnimation(name, number) { name = name + "1.gif"; document.write(""); } // **************************************************************************** // * Feedback & other footer links * // **************************************************************************** function writefeedbacklink(){ contextid = arguments[1]; topictitle = arguments[2]; href = "mailto:"+emailalias+"?subject=Feedback%20on%20topic%20-%20"+topictitle+",%20URL%20-%20"+contextid; document.writeln(""+L_FeedbackLink_TEXT+""); } function writemessagelink(){ //Writes jump to PSS web site redirector //code tbd //Use L_MessageLink_TEXT variable from Localization Variables located at top of script. msdnid = arguments[0]; href = "http://www.microsoft.com/contentredirect.asp?prd=vs&pver=7.0&id="+msdnid; document.writeln(""+L_MessageLink_TEXT+""); }