/* Adds the red arrow in front of all hyperlinks with the css classes
   verdana10Link or disclaimerLink  */
function FormatLinks()
{
	var links = document.getElementsByTagName("a");
	for (var indx = 0; indx < links.length; indx++)
	{
		if (links[indx].className.toLowerCase() == 'verdana10link' || links[indx].className.toLowerCase() == 'disclaimerlink')
			links[indx].innerHTML = "<span class='linkarrow'>></span>" + links[indx].innerHTML + "";
	}
}

/* Looks at the url to see if the requested querystring is there.
   If it is - calls the function Print() */
function PrintPage()
{
	var strLocation = new String( document.location);

	var strLength = strLocation.length;
	var strQuest = "PrintPage=true";
	var intPos;

	intPos = strLocation.indexOf(strQuest);
	if (intPos > 0 )
	{
		Print();
	}
}

/* Opens the print dialog */
function Print()
{
	if (window.print)
	{
		window.print();
	}
}

	
