
if(location.pathname.substr(0, 6)=="/help/" && window==top)
{
	document.write("<p><a href='/help/'>contents</a></p>");
}

function doSection(secNum){
//display the section if it's not displayed; hide it if it is displayed
if (secNum.style.display=="block"){secNum.style.display="none"}
else{secNum.style.display="block"}
}

function Google(searchText)
{
window.open('http://www.google.com/search?q=' + escape(searchText));
}

function GoogleMS(searchText)
{
Google('site:microsoft.com ' + searchText);
}


