// xhtml valid refresh on resize. window for IE, document for other browsers

window.onresize = function() {
         history.go(0);
		 }
document.onresize = function() {
         history.go(0);
		 }