//------------------------------------------------------------------------------
function loadYouTube(menu)
{
	var youTubeTitle;
	var youTubeRef;
	var transcriptName;
	var iH;
	switch(menu)
	{
	case 'home':
		youTubeTitle = 'Welcome to My Website';
		youTubeRef = 'clCQh4bSazM';
		transcriptName = 'Welcome';
		break;
	case 'about':
		youTubeTitle = 'About Me';
		youTubeRef = '5z6_NAUxuVk';
		transcriptName = 'AboutMe';
		break;
	case 'water':
		youTubeTitle = 'Water';
		youTubeRef = 'Sb1x8YpYB_w';
		transcriptName = 'Water';
		break;
	case 'videoTestimonial':
		youTubeTitle = 'Video Testimonials';
		youTubeRef = 'A2NlzmjuGv0';
		transcriptName = 'VideoTestimonials';
		break;
	case 'homeopathy':
		youTubeTitle = 'What Is Homeopathy?';
		youTubeRef = 'zY2NpUt8mQk';
		transcriptName = 'WhatIsHomeopathy';
		break;
	case 'whatIs':
		youTubeTitle = 'What Is EFT?';
		youTubeRef = 'z7czWOoQ30g';
		transcriptName = 'WhatIsEFT';
		break;
	case 'feelingBad':
		youTubeTitle = 'EFT Demo - Feeling Bad';
		youTubeRef = 'l6qhanYBXo8';
		transcriptName = 'EFTFeelingBad';
		break;
	case 'tension':
		youTubeTitle = 'EFT Demo - Tension in Shoulders';
		youTubeRef = 'O2VBv8Lpsrk';
		transcriptName = 'EFTTension';
		break;
	case 'sleep':
		youTubeTitle = 'EFT for Sleeping Problems';
		youTubeRef = 'L0mIzYlskUo';
		transcriptName = 'EFTSleep';
		break;
	case 'EFTBBC':
		youTubeTitle = 'BBC Report - EFT Cures  M.E.';
		youTubeRef = 'bgkoZh01f_4';
		transcriptName = 'BBCReport';
		break;
	}
	iH = '';
	if (transcriptName != '')
	{
		iH = iH + '<h1 class=noBottom>';
	}
	else
	{
		iH = iH + '<h1>';
	}
	iH = iH + '"' + youTubeTitle + '"</h1>';
	if (transcriptName != '')
	{
		iH = iH + '<table border=0 cellspacing=2 cellpadding=0>';
		iH = iH + '<tr>';
 		iH = iH + '<td>';
 		iH = iH + '<a href="JavaScript:openTranscript(';
 		iH = iH + "'" + transcriptName + "'";
 		iH = iH + ')">';
 		iH = iH + '<img src="images/transcript.gif" border=0 height=24>';
 		iH = iH + '</a></td>';
 		iH = iH + '<td><a href="JavaScript:openTranscript(';
 		iH = iH + "'" + transcriptName + "'";
 		iH = iH + ')">';
 		iH = iH + 'Transcript</a></td>';
		iH = iH + '</tr>';
		iH = iH + '<tr>';
		iH = iH + '<td class=padder colspan=2>&nbsp;</td>';
		iH = iH + '</tr>';
		iH = iH + '</table>';
	}
	obj = document.getElementById('videoTitle');
	obj.innerHTML = iH;
	iH = '';
	iH = iH + '<iframe width="560" height="345"';
	iH = iH + ' src="http://www.youtube.com/embed/';
	iH = iH + youTubeRef;
	iH = iH + '" frameborder="0" allowfullscreen></iframe>';
	obj = document.getElementById('youTubeFrame');
	obj.innerHTML = iH;
}
//------------------------------------------------------------------------------
var transcriptWin;
function openTranscript(id)
{
	var features = "";
	features = features + "status=0,";
	features = features + "toolbar=0,";
	features = features + "location=0,";
	features = features + "menubar=0,";
	features = features + "directories=0,";
	features = features + "resizable=0,";
	features = features + "scrollbars=1,";
	features = features + "height=400,";
	features = features + "width=500";
	if (typeof(transcriptWin) != "undefined")
	{
		if (false == transcriptWin.closed)
		{
			transcriptWin.close();
		}
	}
	transcriptWin = window.open("transcripts/transcript" + id + ".htm","testimonialWindow",features);
}
//------------------------------------------------------------------------------

