﻿
//JS For align the page to center independent of the resolution

function GetHeight()
	{
		var y = 0;
		if (self.innerHeight)
		{
			y = self.innerHeight;
		}
		else if (document.documentElement && document.documentElement.clientHeight)
		{
			y = document.documentElement.clientHeight;
		}
		else if (document.body)
		{
			y = document.body.clientHeight;
		}
		return y;
	}

