Dessa 2 funktioner returnerar bredd och höjd;
function getClientWidth(){
if(document.all){
return document.body.clientWidth;
} else {
return window.innerWidth;
}
}
function getClientHeight(){
if(document.all){
return document.body.clientHeight;
} else {
return window.innerHeight;
}
}
