//  JavaScript Document

	
	/** 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>'

}


