// JavaScript Document
//
// <a href="javascript:mailto('yourdomain.com','you')">you@yourdomain.com</a>
//
function mailto(domain,user) 
{ 
document.location.href = "mailto:" + user + "@" + domain;
}

function playtrack(theTrack) {
   var so = new SWFObject("swf/player_mp3_maxi.swf", "mymovie", "170", "25", "7", "#FFFFFF");  
   so.addVariable("autoplay","1");
   so.addVariable("showvolume","1");
   so.addVariable("movie","swf/player_mp3_maxi.swf");
   so.addVariable("mp3",theTrack);
   so.addVariable("bgcolor1","0000FF");
   so.addVariable("bgcolor2","3333FF");
   so.addVariable("bgcolor2","CCCCFF");
   so.addVariable("buttoncolor","FFFFFF");
   so.addVariable("width","170");
   so.addVariable("height","25");
   so.addVariable("volumewidth","40");
   so.addVariable("volumeheight","15");
   so.addVariable("sliderwidth","15");
   so.addVariable("sliderheight","12");
   so.addVariable("showinfo","1");
   so.write("flashPlayer");
   teston = new Image();
   teston.src = "clickcounter.php?file="+theTrack;
}

function flipMorePanel(theID) {
	thePanel = theID.parentNode;
	theClickTag = theID.firstChild.nodeValue;
	var theElementList = thePanel.getElementsByTagName("a");
	var theFirstImg = theElementList[0].href;

	if ( theClickTag == 'See Photos' ) {
		theID.firstChild.nodeValue = 'More Photos'; 
		for ( var i = 0; i < theElementList.length; i++ ) {
			theElementList[i].style.display = "inline";
		};
		var theDivList = thePanel.parentNode.getElementsByTagName("div");
		for ( var i = 0; i < theDivList.length; i++ ) {
			theDivList[i].style.display = "none";
		};
		thePanel.style.display = "block";
		var theIframe = thePanel.parentNode.getElementsByTagName("iframe");
		theIframe[0].style.display = "block";
		theIframe[0].src = theFirstImg;
		//location.href = "photos.html#photoTop";
	};
	if ( theClickTag == 'More Photos' ) {
		theID.firstChild.nodeValue = 'See Photos';
		for ( var i = 0; i < theElementList.length; i++ ) {
			theElementList[i].style.display = "none";
		};
		var theDivList = thePanel.parentNode.getElementsByTagName("div");
		for ( var i = 0; i < theDivList.length; i++ ) {
			theDivList[i].style.display = "block";
		};
		var theIframe = thePanel.parentNode.getElementsByTagName("iframe");
		theIframe[0].style.display = "none";
		theIframe[0].src = "";
		//location.href = "photos.html";
	};
}
