/*	Invisalign Home Javascript */

var HomeTrailerIntroHtml;

function startHomeTrailer()
{
  	//Store Intro Html
	var PatientWaitingRoomPlaceHolder = document.getElementById("PatientWaitingRoomPlaceHolder");
  	HomeTrailerIntroHtml = PatientWaitingRoomPlaceHolder ? PatientWaitingRoomPlaceHolder.innerHTML : null;

	var flashvars = {
			hl:"en",
			fs:"1"
	};

	var params = {
		allowFullScreen:"true",
		wmode:"false"
	};

	var attributes = {
		id: "myflashvideo",
		name: "myflashvideo"
	};

	swfobject.embedSWF("http://www.youtube.com/v/8H5D6_bTcPc&hl=en&fs=1", "PatientWaitingRoom", "245", "160", "9", "/SiteCollectionImages/media/expressInstall.swf", flashvars, params, attributes);

	/**
  	//Start Flash Movie
  	var flashvars = {};
  	var params = {};
 	params.base = "/SiteCollectionImages/media";
  	params.allowFullScreen = "true";
  	var attributes = {};
 	swfobject.embedSWF("/SiteCollectionImages/media/invisalign_60.swf", "PatientWaitingRoom", "245", "194", "9.0.0","/SiteCollectionImages/media/expressInstall.swf", flashvars, params, attributes);
	/**/

	document.getElementById("PatientStopVideo").style.display='inline';
	document.getElementById("PatientWatchVideo").style.display='none';


}

function startHomeTrailerNZ()
{
  	//Store Intro Html
	var PatientWaitingRoomPlaceHolder = document.getElementById("PatientWaitingRoomPlaceHolder");
  	HomeTrailerIntroHtml = PatientWaitingRoomPlaceHolder ? PatientWaitingRoomPlaceHolder.innerHTML : null;

	var flashvars = {
			hl:"en",
			fs:"1"
	};

	var params = {
		allowFullScreen:"true",
		wmode:"false"
	};

	var attributes = {
		id: "myflashvideo",
		name: "myflashvideo"
	};

	swfobject.embedSWF("http://www.youtube.com/v/7rQ7hApqpDk&hl=en&fs=1", "PatientWaitingRoom", "245", "180", "9", "/SiteCollectionImages/media/expressInstall.swf", flashvars, params, attributes);

	document.getElementById("PatientStopVideo").style.display='inline';
	document.getElementById("PatientWatchVideo").style.display='none';

	/**
  	//Start Flash Movie
  	var flashvars = {};
  	var params = {};
 	params.base = "/SiteCollectionImages/media";
  	params.allowFullScreen = "true";
  	var attributes = {};
 	swfobject.embedSWF("/SiteCollectionImages/media/invisalign_60_NZ.swf", "PatientWaitingRoom", "245", "194", "9.0.0","/SiteCollectionImages/media/expressInstall.swf", flashvars, params, attributes);
	/**/
}

function closeHomeTrailer()
{
  	//Restore Intro Html
	var PatientWaitingRoomPlaceHolder = document.getElementById("PatientWaitingRoomPlaceHolder");
	if (PatientWaitingRoomPlaceHolder)
	{
  		PatientWaitingRoomPlaceHolder.innerHTML = HomeTrailerIntroHtml;
  	}

	document.getElementById("PatientStopVideo").style.display='none';
	document.getElementById("PatientWatchVideo").style.display='inline';

}