function toggle(item) { 
	obj=document.getElementById(item); 
	col=document.getElementById("x" + item); 
	if (obj.style.display=="none") { 
		obj.style.display="block"; col.innerHTML="<img src='/img/icons/delete.png' alt='' />"; 
	} else { 
		obj.style.display="none"; col.innerHTML="<img src='/img/icons/add.png' alt='' />"; 
	} 
} 


function quickjumpshow(id){
	if(id != "0"){
		document.location = "/shows/view/"+id;
	}
}

function noSpam(recip,domain,txt){
	var address = recip + "@" + domain;
	if(txt){
		var linktxt = txt;
	}else{
		var linktxt = address;
	}
	document.write("<a href='mailto:" + address + "'>" + linktxt + "</a>");
}
