function mkwidthHeight()
{
 if(window.innerHeight && window.innerWidth)
 {
 if( window.innerWidth < 1024)
 {
 document.getElementById("container").style.width = "1024px";
 document.getElementById("container").style.height = window.innerHeight-18+"px";
 }
 else
 {
 document.getElementById("container").style.width = "100%";
 document.getElementById("container").style.height = window.innerHeight+"px";
 }

 }
 else if(document.body.clientHeight)
 {
 document.getElementById("container").style.width = document.body.clientWidth < 1000 ? 1000+"px" : "100%";
 document.getElementById("container").style.height = document.body.clientHeight+"px";
 }
 else
 {
 document.getElementById("container").style.width = document.documentElement.clientWidth < 800 ? 800+"px" : "100%";
 document.getElementById("container").style.height = document.documentElement.clientHeight+"px";
 }
 }  
 
 
