// JavaScript Document
function ViewTutorialVideo(Path){
    var url=Path;	
	newwindow=window.open(url,'name',"width=575,height=425,scrollbars=0,resizable=0,top,left");
    if (window.focus) {newwindow.focus()}
}

var PlayTuTorialVideo = function(VideoName)	{ 
	var EmbedSrc  = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" id="/YouTube_video/youtube" width="550" height="400">';
		EmbedSrc +='<param name="allowFullScreen" value="true" />';
		EmbedSrc +='<param name="wmode" value="transparent" />';		
		EmbedSrc +='<param name="movie" value="orb24.swf?xml=config_tutorial.xml&&video='+VideoName+'" />';
		EmbedSrc +='<param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />';
		EmbedSrc +='<embed src="orb24.swf?xml=config_tutorial.xml&video='+VideoName+'" quality="high" bgcolor="#ffffff" width="550" height="400" name="/YouTube_video/youtube" align="middle" allowFullScreen="true" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" wmode="transparent"  pluginspage="http://www.macromedia.com/go/getflashplayer">';
		EmbedSrc +='</object>';
		if(document.getElementById("LoadVideo")){
			document.getElementById("LoadVideo").innerHTML = EmbedSrc;	
		}
}