function winHeight ()
{
	return window. innerHeight ? window. innerHeight : document. documentElement. clientHeight ? document. documentElement. clientHeight : document. body. clientHeight;
}

function winWidth ()
{
	return window. innerWidth ? window. innerWidth : document. documentElement. clientWidth ? document. documentElement. clientWidth : document. body. clientWidth;
}