function gotoEncrypted( encrypted){
	var decrypted= "";
	for( var i= 0; i< encrypted.length; i+= 2){
		var hex= encrypted.substring(i, i+ 2);
		decrypted+= String.fromCharCode( parseInt( hex, 16));
	}
	decrypted= decodeURIComponent( decrypted);
	location.href= decrypted;
}