function printMe() {
	if (window.print){
		document.getElementById("content").style.height="auto";
		window.print();
	}else{
		alert("Sorry, this browser does not support this feature.  To print this page, please click on File at the top of your screen, and then choose Print.");
	}
}
/*
Function: replaceNextButton
	Function to replace the next button image and optionally remove the link.

Parameters:
	newImage	- the full file name of the new image
	removeLink	- boolean to indicate whether link should be removed

Dependencies:
	<$>; global variables nextButton and nextLink defined on page if removing link

Returns:
	NA

Change Log:
	2006.10.19	ALP	- Initial version

Bugs:
	None known

To do:
	None
*/
function replaceNextButton(newImage,removeLink) {
	var nextButtonId = 'buttonNext';
	$(nextButtonId).src = 'shells/standardShell/tnt/styleImages/'+newImage;
	if (removeLink) {
		nextButton = $(nextButtonId);
		nextLink = $(nextButtonId).parentNode;
		$('footer').removeChild(nextLink);
		$('footer').appendChild(nextButton);
	}
}

function loadPage(){
	var urlLoc = window.location.search.substring(1);	
	var pageArray = urlLoc.split("=");
	var pageToLoad = pageArray[1];
	ajax("GET", "1.htm", true, "", "content");
}