/** Insert an embedded video inside a div */

function embedVideo(divId, videoName, width, height, imageName) {

	document.getElementById(divId).innerHTML =

'<embed ' +'	style="clear: both;" ' +'	src="http://www.thednaofinternetmarketing.com/dna-videos/player.swf" ' +'	width="' + width + '" ' +'	height="' + height + '" ' +'	allowscriptaccess="always" ' +'	allowfullscreen="true" ' +'	flashvars="&file=http://www.thednaofinternetmarketing.com/dna-videos/videos/' + videoName + '&image=http://www.thednaofinternetmarketing.com/dna-videos/images/'+imageName+'" align="middle"> ' +'</embed>';


}



function embedVideo2(divId, videoTitle,subTitle,videoName, width, height, imageName) 
{	
	
	document.getElementById(divId).innerHTML ='<div class="TopVideoBox1">'+
        	'<div class="Header">'+
	        	'<h2 class="videoheader"><strong>'+videoTitle+'</strong></h2>'+
                '<div class="TextRight" id="subTitle">'+subTitle+'</div>'+
       	'</div>'+
            '<div class="VideoBox1"><embed ' +'	style="clear: both;" ' +'	src="http://www.thednaofinternetmarketing.com/dna-videos/player.swf" ' +'	width="' + width + '" ' +'	height="' + height + '" ' +'	allowscriptaccess="always" ' +'	allowfullscreen="true" ' +'	flashvars="&file=http://www.thednaofinternetmarketing.com/dna-videos/videos/' + videoName + '&image=http://www.thednaofinternetmarketing.com/dna-videos/images/'+imageName+'" align="middle"> ' +'</embed>'+
			'</div>'+ '<div style="padding:5px;"></div>'+ '<img src="http://www.thednaofinternetmarketing.com/dna-videos/images/full-screen.jpg"> '

          '<div class="ClearFloat"></div>'+	
      '</div>'
}
