/*****************************************/
/******* ©2008 // despecial.com *******/
/*****************************************/

function contact(pt1, pt2) {
	window.location = "mailto:" + pt1 + "@" + pt2;
}

function toggleDisplay(elementname,show) {
	target = document.getElementById(elementname);
	if (show == 1) target.style.display = "block";
	else target.style.display = "none";
}

function show(elementname) {
	target = document.getElementById(elementname);
	target.style.display = (target.style.display == "block") ? "none" : "block";
}

