﻿function createPlayer(div, url, videoURL, width, height) {

	var embed = '';	
	embed += '<object type="application/x-shockwave-flash" id="videoplayer" data="' + 
			url + '" width="' + width + '" height="' + height + '">';
	embed += '    <param name="movie" value="' + url + '" />';
	embed += '    <param name="allowScriptAccess" value="always" />';
	embed += '    <param name="allowFullscreen" value="true" />';
	embed += '    <param name="flashvars" value="_video=' + videoURL + '" />'
	embed += '</object>';
	
	div.innerHTML = embed;	
}
