function flashEmbed(url, width, height, bgColor) {
	var txt = '<object type="application/x-shockwave-flash" data="'+url+'" width="'+width+'" height="'+height+'">';
	txt += '<param name="movie" value="'+url+'" />';
	txt += '<param name="quality" value="high" />';
	txt += '<param name="allowScriptAccess" value="sameDomain" />';
	txt += '<param name="bgcolor" value="' + bgColor + '" />';
	txt += '</object>';
	
	document.writeln(txt);
}

function toggleBox(boxId) {
	if (document.getElementById(boxId).style.display == "none") {
		document.getElementById(boxId).style.display = "block";
	}
	else {
		document.getElementById(boxId).style.display = "none";
	}
}

function myString() {
  theString = String.fromCharCode(112, 101, 110, 116, 97, 115, 99, 104, 111, 111, 108, 64, 112, 101, 110, 116, 97, 115, 99, 104, 111, 111, 108, 46, 104, 117);
  return "mailto:" + theString;
}

window.onload = function() {
  document.getElementById("e-mail").setAttribute("href", myString());
}
