function getwindowsize() {
if (navigator.userAgent.indexOf("MSIE") > 0) {
var sSize = (document.body.clientWidth * document.body.clientHeight);
return sSize;
} else {                                                
var sSize = (window.outerWidth * window.outerHeight);
return sSize;
}
return;      
}
