// IMAGE SWAP
/* This script and more available free online at The JavaScript Source :: http://javascript.internet.com Created by: Jehiah Czebotar :: http://jehiah.com/ */

function SimpleSwap(el,which) {
el.src=el.getAttribute(which || "origsrc");
}
function SimpleSwapSetup() {
var x = document.getElementsByTagName("img");
for (var i=0;i<x.length;i++){
var name = x[i].getAttribute("name");
if (!name) continue; x[i].name_img = new Image(); x[i].name_img.src=name; x[i].onmouseover = new Function("SimpleSwap(this,'name');"); x[i].onmouseout = new Function("SimpleSwap(this);"); x[i].setAttribute("origsrc",x[i].src);
}
}
var PreSimpleSwapOnload =(window.onload)? window.onload : function(){}; window.onload = function(){PreSimpleSwapOnload(); SimpleSwapSetup();}

// EMAIL
function eml()
{
a="xxxxxxxx.com";u="username";document.write('<a href="mai'+'lto:'+u+'@'+a+'">'+u+'@'+a+'</a>');
}

//
