// browser resize check by denver maxwell, denvermaxwell@hotmail.com, 22/12/2003
origWidth = document.body.offsetWidth
setTimeout("resizeCheck()", 500);
function resizeCheck(){		
	innerWidth = document.body.offsetWidth 
	if (innerWidth != origWidth ) {
		if (origWidth == 0 ) { 
				origWidth = document.body.offsetWidth
			}
				else {location.reload();}
			}
		setTimeout("resizeCheck()", 500);
	}