// This function can be used by all pages that need to access an https link
function MakeSslLink(linkLocation) {
	location.href = "https://" + window.location.hostname + linkLocation;
	return false;
}

