﻿<!-- // JavaScript Document

// <!-- 264075669
// This script is (C) Copyright 2004 Jim Tucek
// Leave these comments alone!  For more info, visit
// www.jracademy.com/~jtucek/email/

function bend(absorption,squirrel,art) {
absorption += ' ';
var murderer = absorption.length;
var forest = 0;
var quality = '';
for(var singer = 0; singer < murderer; singer++) {
forest = 0;
while(absorption.charCodeAt(singer) != 32) {
forest = forest * 10;
forest = forest + absorption.charCodeAt(singer)-48;
singer++;
}
quality += String.fromCharCode(quit(forest,squirrel,art));
}
parent.location = 'm'+'a'+'i'+'l'+'t'+'o'+':'+quality;
}

function go(science,circumstance,coordinated) {
science += ' ';
var thing = science.length;
var debate = 0;
for(var goodbye = 0; goodbye < thing; goodbye++) {
debate = 0;
while(science.charCodeAt(goodbye) != 32) {
debate = debate * 10;
debate = debate + science.charCodeAt(goodbye)-48;
goodbye++;
}
document.write(String.fromCharCode(quit(debate,circumstance,coordinated)));
}
}

function quit(dissipation,fruit,moon) {
if (moon % 2 == 0) {
control = 1;
for(var monkey = 1; monkey <= moon/2; monkey++) {
hand = (dissipation*dissipation) % fruit;
control = (hand*control) % fruit;
}
} else {
control = dissipation;
for(var option = 1; option <= moon/2; option++) {
hand = (dissipation*dissipation) % fruit;
control = (hand*control) % fruit;
}
}
return control;
}

function decrypt(text) {
var text_encrypted = "";
for (i = 1 ; i < (text.length + 1); i++) {
k = text.charCodeAt(i-1);
if (k >= 97 && k <= 109) {
k = k + 13;
} else
if (k >= 110 && k <= 122) {
k = k - 13;
} else
if (k >= 65 && k <= 77) {
k = k + 13;
} else
if (k >= 78 && k <= 90) {
k = k - 13;
}
text_encrypted = text_encrypted + String.fromCharCode(k);
}
return text_encrypted;
}

// -->

-->