
      function WindowHeight()
      {
        var WindowHeight = 0;
        if( typeof( window.innerWidth ) == 'number' )
        WindowHeight = window.innerHeight;
        else if (document.documentElement &&  document.documentElement.clientHeight)
        WindowHeight = document.documentElement.clientHeight;
        else if(document.body && document.body.clientHeight)
        WindowHeight = document.body.clientHeight;
        return WindowHeight;
      }

      function WindowWidth()
      {
        var WindowWidth = 0;
        if( typeof( window.innerWidth ) == 'number' )
        WindowWidth = window.innerWidth;
        else if (document.documentElement &&  document.documentElement.clientWidth)
        WindowWidth = document.documentElement.clientWidth;
        else if(document.body && document.body.clientWidth)
        WindowWidth = document.body.clientWidth;
        return WindowWidth;
      }


function moveIt(obj) 
{
	obj.style.display = "block"; //show the box
	obj.style.top = (WindowHeight() / 2) - (obj.offsetHeight / 2) +"px"; //center vertical
	obj.style.left = (WindowWidth() / 2) - (obj.offsetWidth / 2) +"px"; //center horizontal
}


window.onload=function()
{
	//document.getElementById('touchcomputer').style.display = "none";
//	moveIt(document.getElementById('touchcomputer'));
}



