﻿// Login.js

function ContentPage_OnLoad() {
   // Get width and height of logo image and set up PNG hack for it
   var logoImage = $get("logoImage");
   logoImage.style.width = logoImage.width + "px";
   logoImage.style.height = logoImage.height + "px";
   AddClass(logoImage, "png");
}//end ContentPage_OnLoad

function ShowHelp() {
	document.getElementById("helpsection").style.display = "block";
}//end ShowHelp

function HideHelp() {
	document.getElementById("helpsection").style.display = "none";
}//end HideHelp
