<!-- Idea by:  Nic Wolfe (Nic@TimelapseProductions.com) -->

<!-- Web URL:  http://fineline.xs.mw -->

<!-- This script and many more are available free online at -->

<!-- The JavaScript Source!! http://javascript.internet.com -->



<!-- Begin


function popUp(URL) {

day = new Date();

id = day.getTime();

eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600');");

}
<!-- End


<!-- Script to join and present an email address put in a random order in main page.
<!-- This is to resist spammers from stealing email addresses 
<!-- variables part1 part3 and part5 are the ones that have the actual parts of the email address
<!-- while part2 and part4 can contain any random strings
<!-- Note : The email address is joined as ---- part3 at part1 . part5
 
<!-- Begin

function crypt_ml(part1, part2, part3, part4, part5)
{
	document.write('<a href=\"mailto:' + part3 + '\u0040' + part1 + "." + part5+'\">');
	document.write(part3 + '\u0040' + part1 + "." + part5 + '</a>');
}

<!-- End