var noteJS = "";
var noteIn = "";
var noteJS2 = "";

function hideNt(noteJS)
{
if ( document.documentElement)
	{
	document.write('<style type\=\"text\/css\" media\=\"screen\">');
	document.write('\#' + noteJS + '\{ display\:none\; \}');
	document.write('<\/style>');
	return;
	}
else { return; }
}

function hideNt2(noteJS,noteJS2)
{
if ( document.documentElement)
	{
	document.write('<style type\=\"text\/css\" media\=\"screen\">');
	document.write('\#' + noteJS + ', \#' + noteJS2 + '\{ display\:none\; \}');
	document.write('<\/style>');
	return;
	}
else { return; }
}

function showNt(noteJS)
{
if ( document.documentElement)
	{
	document.getElementById(noteJS).style.display='block';
	return;
	}
else { return; }
}

function hideIntro(noteIn)
{
if (document.documentElement)
	{document.getElementById(noteIn).style.display='none';return;}
else{return;}
}




function hdLnk(linkJS,txtJS) {

if ( document.documentElement)

{
	
document.getElementById(linkJS).innerHTML=txtJS;
return;}

else{return;}
}


