// Track Inner Clicks with Google
function googleTrack(str) {
	if (pageTracker) {
		pageTracker._trackPageview(str);
	}
}
// Bookmark Website
function bookmarkSite(){
	if (document.all)
		window.external.AddFavorite(document.location.href, document.title);
	else if (window.sidebar)
		window.sidebar.addPanel(document.title, document.location.href, '')
}
// Refresh Website
function refreshPage() {
	document.location.reload();
}