// JavaScript Document
//function WebMaster(){
var winW = 0;
var winH = 0;
function getWinSize() { 
//To adjust the width and height values taking into accout the scrollbars: 
// in Netscape Navigator: subtract 16 from the width and height 
// in Microsoft Internet Explorer: subtract 20 from the width and height 
//Thus, the code adjusted for scrollbars might look as follows: 
	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  winW = window.innerWidth-16;
	  winH = window.innerHeight-16;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  winW = document.body.offsetWidth-20;
	  winH = document.body.offsetHeight-20;
	 }
   }
}	
	
	  document.write( "<a href='&#109;ailto&" );	
	  document.write( "#58;sergeyks" );
	  document.write( "&#64;orthodox-" );					
	  document.write( "nijmegen.nl' class='link'>" );					
	  document.write( "Web-master S.Savtchenko</a> Last Update:" );					
	  document.write( document.lastModified );
	  getWinSize();
	  document.write( "   "+winW +"x"+winH+"  "+navigator.appName );
//}
