/*	

	Dusted Design Partners Limited

*/

function toolTip(whatTxt) {
	document.getElementById("toolTip").innerHTML = whatTxt;
}

printLink = function() {
	if (document.getElementById("printLink")) {
		var printBut = document.getElementById("printLink");
		printBut.onclick=function() {
			if (window.print) {
				window.print();
			} else {
				alert("Unfortunately your browser doesn't support printing via Javascript.\nTo print this page please select \"File > Print...\" in your browser's menu.");
			}
			return false;
		}
		printBut.onmouseover=function() {
			toolTip("Print this page");
		}
		printBut.onmouseout=function() {
			toolTip("Site Tools");
		}
	}
}

bookmarkLink = function() {
	if (document.getElementById("bookmarkLink")) {
		var bookBut = document.getElementById("bookmarkLink");
		bookBut.onclick=function() {
			if (document.all) {
				bookmarkurl=document.location;
				bookmarktitle="ArmstrongAdams";
				window.external.AddFavorite(bookmarkurl,bookmarktitle);
			} else {
				alert("Unfortunately your browser doesn't support adding bookmarks via this link.\n\nTo bookmark this page please use your browser's menu.");
			}
			return false;
		}
		bookBut.onmouseover=function() {
			toolTip("Bookmark this page");
		}
		bookBut.onmouseout=function() {
			toolTip("Site Tools");
		}
	}
}

tipInit = function() {
	var topLink = document.getElementById("topLink");
	topLink.onmouseover =function() {
		toolTip("Back to top");
	}
	topLink.onmouseout=function() {
		toolTip("Site Tools");
	}
}


window.onload = function() {
	printLink();bookmarkLink();tipInit();
}