﻿// JScript File

var IE_BROWSER;

function SetScreenInformation()
{			
	if (parseInt(navigator.appVersion)>3) 
	{
		if (navigator.appName=="Netscape") 
		{
			document.getElementById('scrHeight').value  = window.innerHeight-16;
			document.getElementById('scrWidth').value = window.innerWidth-16;
		}
		if (navigator.appName.indexOf("Microsoft")!=-1) 
		{
			document.getElementById('scrHeight').value  = document.body.offsetHeight-20;
			document.getElementById('scrWidth').value = document.body.offsetWidth-20;
		}
	}
}

