function getWindowWidth() {
//	if (document.all) { return document.body.offsetWidth;}  
	if (ie) { return document.body.offsetWidth; }  
        else    { return window.innerWidth; }
}
