if (self.screen) {     // for NN4 and IE4
	width = screen.width
	height = screen.height
}
else if (self.java) {   // for NN3 with enabled Java
	var jkit = java.awt.Toolkit.getDefaultToolkit();
	var scrsize = jkit.getScreenSize();       
	width = scrsize.width; 
	height = scrsize.height; 
}
else{
 width = height = '?' // N2, E3, N3 w/Java off, probably Opera and WebTV
}
document.write('<a href="http://www.free-web-statistics.com/fws_'+fws_usr+'.html" target="_top"><img src="http://www.free-web-statistics.com/imgs/counter.jpg?fws='+fws_usr+'&sw='+width+'&sh='+height+'&loc='+window.location+'&ref='+document.referrer+'" border="0"></a>')
//or whatever based on the above results
