function winHeight() {
 window.location.href =  window.location.href;
}

function winHeight22() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  
  document.images['spacerGif'].height=myHeight;
}

function imgReplace(oldimg) {
  var newimg = document.createElement('img');
  newimg.setAttribute('src','header00.jpg');
  newimg.setAttribute('id','cst');
  oldimg.parentNode.replaceChild(newimg,oldimg);
}


function gimmeHeight() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  
  return myHeight;
}

function gimmeWidth() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  
  return myWidth;
}

function showWelcome() {
		mW=gimmeWidth();
		cW=mW/2;
		mH=gimmeHeight();
		cH=mH/2;
		document.write("<img id=mincovcom src=mincovcom.jpg style='position:absolute; top:0px; left:100px'>\n");
		document.write("<img id=welcome src=welcome2.jpg style='position:absolute; top:"+(cH-201)+"px; left: "+(cW-237)+"px;'>\n");
		document.write("<img id=designed src=designed.jpg style='position:absolute; top:"+(mH-25)+"px; left: "+(cW-224)+"px;'>\n");
		document.write("<img id=amincov src=andreimincov.jpg style='position:absolute; top:"+Math.max((mH-200),(cH+35))+"px; left: "+(mW-330)+"px;'>\n");
}