function mailer(recip,dmn,ext,sbjct) {
  window.location.href = "mailto:" + recip + "@" + dmn + "." + ext +"?Subject=" + sbjct;
}

function xxxloadMedia(myFile){
	var myURL = "http://www.jettergear.com/assets/" + myFile;
	//alert("Hello Brad");
	window.open(myURL, '_blank', 'toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=250,height=250');

}

function loadMedia(myFile, mType, myTitle){
	//var myURL = "http://127.0.0.1/jettergear/www/public/player.cfm?myMedia=" + myFile + "&mType=" + mType + "&myTitle=" + myTitle;
	//if (myFile = "bfdrri1") {
	//	myFile = "chris2";
	//	myTitle = "Movie: Smooth Blues Drive (Gain Stage OD)"
	//}
	myTitle = escape(myTitle);
	var myURL = "http://www.jettergear.com/player.cfm?myMedia=" + myFile + "&mType=" + mType + "&myTitle=" + myTitle;
	window.open(myURL, '_blank', 'toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=600');

}

function loadExtLink(myUrl) {
	var myFullUrl = "http://" + myUrl;
	window.open(myFullUrl, '_blank', 'toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,width=850,height=600');
}


function showhide(id, linkId){ 
	if (document.getElementById){ 
		obj = document.getElementById(id); 
		myLink = document.getElementById(linkId);
	if (obj.style.display == "none"){ 
		obj.style.display = "";
		myLink.innerHTML='hide';
	} else { 
		obj.style.display = "none";
		myLink.innerHTML='read';
	} 
	} 
} 

 
 
