function OpenFooterAsset(URL)
{
	window.open(URL,"Virtual_Visit_Information","toolbar=no,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,scrolling=yes,resizable=yes,width=750,height=550,left=0,top=0");
}

function embedQuicktimeObject(movie, id) 
{
	document.write("<object id='" + id + "' classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width='100%' height='100%' codebase='http://www.apple.com/qtactivex/qtplugin.cab'>");
		document.write("<param name='src' value='" + movie + "' />");
		
		if (movie.indexOf("staticImage.jpg") > -1)
		{
			document.write("<param name='controller' value='false' />");
		}
		else
		{
			document.write("<param name='controller' value='true' />");
		}
		
		document.write("<param name='autoplay' value='true' />");
		document.write("<param name='enablejavascript' value='true' />");
		document.write("<param name='scale' value='aspect' />");
		document.write("<param name='kioskmode' value='true' />");
		document.write("<param name='bgcolor' value='#ffffff' />");

		document.write("<embed ");
			document.write("id='" + id + "'");
			document.write("src='" + movie + "'");
			document.write("width='100%'");
			document.write("height='100%'");
			document.write("autoplay='true'");
			document.write("scale='aspect'");
			document.write("kioskmode='true'");
			document.write("bgcolor='#ffffff'");
			document.write("type='video/quicktime'");
			document.write("pluginspage='http://www.apple.com/quicktime/download/'");
			document.write("enablejavascript='true'");
			
			if (movie.indexOf("staticImage.jpg") > -1)
			{
				document.write("controller='false'");
			}
			else
			{
				document.write("controller='true'");
			}
		document.write("></embed>");
	document.write("</object>");
}

function embedFlashObject(asset) 
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
	document.write('height="100%"');
	document.write('width="100%">');
	document.write('<param name="src" value="' + asset + '">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="align" value="middle">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="bgcolor" value="#FFFFFF">');
	document.write( '<embed ' );
	document.write( '  src="' + asset + '" ' );
	document.write( '  name="' + asset + '"' );
	document.write( '  height="100%" ' );
	document.write( '  width="100%" ' );
	document.write( '  align="middle" ' );
	document.write( '  quality="high" ' );
	document.write( '  allowScriptAccess="sameDomain" ' );
	document.write( '  scale="aspect" ' );
	document.write( '  pluginspage="http://www.macromedia.com/go/getflashplayer" ' );
	document.write( '  bgcolor="#FFFFFF" ' );
	document.write( '  type="application/x-shockwave-flash">' );
	document.write( '</embed>' );
	document.write('</object>');
}

function playVideo(video)
{
	var text = "";
	var layer = parent.document.getElementById("videoWindow");
	var panelMovie = document.panelMovie;
	
	layer.innerHTML = '<iframe name="videoWindow" src="video.html?smil=smils/' + video + '" height="100%" width="600px" scrolling="auto" frameborder="0"></iframe>';
	
	//For Safari, pad some spaces so that the side panel opens properly.
	if (navigator.appVersion.indexOf("Safari") > -1)
	{
		for (var i=0; i<75; i++) 
		{
			text += '&nbsp;';
		}
	}
	
	//Display the side panel information.
	layer.innerHTML += text;
}
