<!--

//var 'img id'   = new Image(); 'img id'.src   = 'img/'img id'.gif';
//var 'img id'_o = new Image(); 'img id'_o.src = 'img/'img id'_o.gif';

var Msg = 'This link is not clickable. Please type the address by hand.'; 

function MailMsg_() { alert(Msg); }
function MailImg_(ImgName, ShowOver) { 
	if (!document.images) return;
	if (!PageOk) return;
    if (ShowOver == 1) {
        document.images[ImgName].src = eval(ImgName + "_o.src");
    } else {
        document.images[ImgName].src = eval(ImgName + ".src");
    }		
}
function MailImg800_(ImgId) {
    if (screen.width > 800) return;
    var SizeW = parseInt(eval('document.images[' + '"' + ImgId + '"' + '].width'));
        eval(DocX + Lp + '"' + ImgId + '"' + Rp + Sw + '=' + Math.floor(SizeW * 0.90));     
    var SizeH = parseInt(eval('document.images[' + '"' + ImgId + '"' + '].height'));
        eval(DocX + Lp + '"' + ImgId + '"' + Rp + Sh + '=' + Math.floor(SizeH * 1)); //0.95     
}

//call at the end: MailImg800_(' 'img id' ');

//-->

