<!--
g_apostrophe="'";
strBrowserName = navigator.appName.substring(0, 8);
nVer = navigator.appVersion.substring(0, 1);
// See if the anchors collection is available
// and Find out which braces to use for the anchors collection.
bAnchors = 0;
if ("Netscape" == strBrowserName)
{
	strLBrace = '[';
	strRBrace = ']';
	if (nVer >= 2)
		bAnchors = 1;
}
if ("Microsof" == strBrowserName)
{
	strLBrace = '(';
	strRBrace = ')';
	if (nVer >= 3)
		bAnchors = 1;
}
function PulseTextOn( s )
{
	if (bAnchors)
	{
		eval(s+"_active = 1;");
		setTimeout( "if ("+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#BBBBBB'; } ", 10 );
		setTimeout( "if ("+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#999999'; } ", 100 );
		setTimeout( "if ("+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#777777'; } ", 200 );
		setTimeout( "if ("+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#444444'; } ", 300 );
		setTimeout( "if ("+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#222222'; } ", 500 );
		setTimeout( "if ("+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#111111'; } ", 800 );
		setTimeout( "if ("+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#000000'; } ", 1000 );
	}
}
function PulseTextOff( s )
{
	if (bAnchors)
	{
		eval(s+"_active = 0;");
		setTimeout( "if (0=="+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#111111'; } ", 10 );
		setTimeout( "if (0=="+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#222222'; } ", 100 );
		setTimeout( "if (0=="+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#333333'; } ", 200 );
		setTimeout( "if (0=="+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#555555'; } ", 300 );
		setTimeout( "if (0=="+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#888888'; } ", 400 );
		setTimeout( "if (0=="+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#999999'; } ", 500 );
		setTimeout( "if (0=="+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#CCCCCC'; } ", 600 );
		setTimeout( "if (0=="+s+"_active) { document.anchors"+strLBrace+"'"+s+"'"+strRBrace+".style.color='#FFFFFF'; } ", 700 );
	}
}
function Write(s)
{
	document.write(s);
}
function WriteWithBR(s)
{
	document.write(s + "<br>");
}
function WritePara(s)
{
	document.write("<p>" + s + "</p>");
}
function WriteSpaces(n)
{
	for (i=0; i < n; i++)
		document.write("&nbsp;");
}
//-->
