// JavaScript Document

function resizeImage()
{
	var targetobject = document.getElementById('container');
	th = Math.round(screen.availHeight - 90)
	tw= Math.round(screen.availWidth - 30)


    targetobject.style.height = th + "px";
	targetobject.style.width = tw + "px";
	targetobject.style.overflow = "hidden";
	
	

}

function resizeFooter()
{
	var targetobject = document.getElementById('footer');
	th = Math.round(screen.availHeight)

	if (th < 768) {
		targetobject.style.top = 768 + "px";
		targetobject.style.bottom =  "auto";
	};
    
	
	
	

}

function removeScroll() {
	var targetobject = document.getElementById('window');
	
	targetobject.style.overflow = "hidden"
		
}

