function setSiteAttributes(){
	var obj = document.getElementById("startscreen");
	var screenHeight = document.body.clientHeight;
	if (screenHeight < 620) {
		obj.style.height="768px";
		obj.style.width="1024px";
	} else {
		obj.style.height="100%";
		obj.style.width="100%";
	}
}
window.onload=setSiteAttributes;
window.onresize=setSiteAttributes;
