// JavaScript Document

function setContStyle() {
  var myHeight;
  if( typeof( window.innerWidth ) == 'number' ) {
	//Non-IE
    myHeight = window.innerHeight - 220;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myHeight = document.documentElement.clientHeight - 220;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myHeight = document.body.clientHeight - 220;
  }
  with (document) {
    writeln('<style type="text/css">');
    writeln('<!--');
    writeln('#Contentlayer {');
    writeln('	position:absolute;');
    writeln('	left:200px;');
    writeln('	top:150px;');
    writeln('	width:80%;');
    writeln('   height:' + myHeight + 'px;');
    writeln('	z-index:2;');
    writeln('   overflow:auto;');
    writeln('}');
    writeln('-->');
    writeln('</style>');
  }
}

function mail_mail() {
  var
  sTmp='';
  sTmp='h'+ sTmp;
  sTmp='c'+ sTmp;
  sTmp='.'+ sTmp;
  sTmp='e'+ sTmp;
  sTmp='g'+ sTmp;
  sTmp='a'+ sTmp;
  sTmp='l'+ sTmp;
  sTmp='l'+ sTmp;
  sTmp='i'+ sTmp;
  sTmp='v'+ sTmp;
  sTmp='-'+ sTmp;
  sTmp='t'+ sTmp;
  sTmp='e'+ sTmp;
  sTmp='r'+ sTmp;
  sTmp='c'+ sTmp;
  sTmp='e'+ sTmp;
  sTmp='s'+ sTmp;
  sTmp='@'+ sTmp;
  sTmp='l'+ sTmp;
  sTmp='i'+ sTmp;
  sTmp='a'+ sTmp;
  sTmp='m'+ sTmp;
  window.location = 'mailto:'+ sTmp;
}
