// JavaScript Document

function maillink (dmain, clas, whom, text, subject) {
	document.write('<a href="mailto:'+whom+'@'+dmain);
	if(subject<1) document.write('"')
	else document.write('?subject='+subject+'"');
	if(clas<1) document.write('>')
	else document.write(' class="'+clas+'">');
	if(text<1) document.write(whom+'@'+dmain)
	else document.write(text);
	document.write('</a>');
	}

function mailchris (clas, text, subject) {
	dmain = 'bigpond.com';
	whom = 'kachana';
	document.write('<a href="mailto:'+whom+'@'+dmain);
	if(subject<1) document.write('"')
	else document.write('?subject='+subject+'"');
	if(clas<1) document.write('>')
	else document.write(' class="'+clas+'">');
	if(text<1) document.write(whom+'@'+dmain)
	else document.write(text);
	document.write('</a>');
	}

function maildani (clas, text, subject) {
	dmain = 'agn.net.au';
	whom = 'satlink';
	document.write('<a href="mailto:'+whom+'@'+dmain);
	if(subject<1) document.write('"')
	else document.write('?subject='+subject+'"');
	if(clas<1) document.write('>')
	else document.write(' class="'+clas+'">');
	if(text<1) document.write(whom+'@'+dmain)
	else document.write(text);
	document.write('</a>');
	}

function mailnaui (clas, text, subject) {
	dmain = 'student.ethz.ch';
	whom = 'pnauer';
	document.write('<a href="mailto:'+whom+'@'+dmain);
	if(subject<1) document.write('"')
	else document.write('?subject='+subject+'"');
	if(clas<1) document.write('>')
	else document.write(' class="'+clas+'">');
	if(text<1) document.write(whom+'@'+dmain)
	else document.write(text);
	document.write('</a>');
	}

sfHover = function() {
	var sfEls = document.getElementById("rollovermenu").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);