<!--
  
////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////// COPYRIGHT 2008 by BENEDIKT VAMOS ///////////////////////////////////
//    This source code is copyrighted by Benedikt Vamos (http://benedikt.vamos-inc.at). You are not   //
//	  allowed to copy, modify, translate or distribute this without my personal (written) agreement.  //
//	  For more information please don't hesitate to contact me! ( kontakt (at) vamos-inc (dot) at )	  //
/////////////////////////////////// COPYRIGHT 2008 by BENEDIKT VAMOS ///////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////

function uncryptMailto( s , rand_1, rand_2, rand_3){
	var n = 0;
	var r = "";
	for( var i = 0; i < s.length; i++){
		n = s.charCodeAt( i );
		if( n >= 8364 ){
			n = 128;
		}
		if(i % 3 == 0){
			r += String.fromCharCode( n - rand_1 );
		} else if(i % 3 == 1){
			r += String.fromCharCode( n - rand_2 );
		} else {
			r += String.fromCharCode( n - rand_3 );
		}
	}
	location.href = r;
}
// --> 
