// JavaScript Document

// search box
function clearText(thefield){
  if (thefield.defaultValue==thefield.value)
    thefield.value = ""
} 

// show
function show(tmp) {
	document.getElementById(tmp).style.display = "block";
}

// show/hide
function toggle(tmp) {
	var id = document.getElementById(tmp);
	if(id.style.display == "none") {
		id.style.display = "block";
	} else { 
	    id.style.display = "none";
	}
}

// NO SPAM from http://www.it-base.ro/2007/06/20/email-anti-spam-protection/
function noSpam( user, domain ) {
   document.location = 'mailto:' + user + '@' + domain;
}