// routines.js
// ® 2002 mediashop.ie

function init() {
	var a;
	for (var i = 0; (a = document.links[i]); i++) {
		if (a.target && a.target.indexOf("_launcher") == 0) {
			a.onclick = launcher;
		}
	}
}

function toggle(item) {
	obj=document.getElementById(item);
	visible=(obj.style.display!="none")
	key=document.getElementById("top" + item);
	if (visible) {
		obj.style.display="none";
		key.innerHTML=(")+"+item);
	} else {
		obj.style.display="block";
		key.innerHTML=(")-"+item);
   }
}

function launcher() {
	var a = this.target.split(":");
	var sFeatures = a[1];
	window.open(this.href, a.length > 2 ? a[2] : String((new Date()).getTime()), sFeatures);
	return false;
}

function spamLess(name){
	window.location = "mailto:"+name+"@bluebottledesign.com";
}
