/**
 * This script contains embed functions for common plugins. This scripts are complety free to use for any purpose.


function fileFlash(src,width,height) {
	var currentTime = new Date(); 
	var year = currentTime.getFullYear();
	var month = currentTime.getMonth() + 1;
	var day = currentTime.getDate();
	var new_id = year+''+month+''+day+'_'+currentTime.getHours()+''+currentTime.getMinutes()+''+currentTime.getSeconds();
	return '<p id="flash_'+new_id+'">'+'<'+'script type='+'\"text/javascript\"'+'>'+'var so=new SWFObject(\"' + src + '\", \"flash_' + new_id + '\", \"' + width + '\", \"' + height + '\", \"8\");so.write(\"flash_'+new_id+'\");'+'<'+'/script'+'>'+'</p>';
	
}

function fileFLV(src) {
	var currentTime = new Date(); 
	var year = currentTime.getFullYear();
	var month = currentTime.getMonth() + 1;
	var day = currentTime.getDate();
	var new_id = year+''+month+''+day+'_'+currentTime.getHours()+''+currentTime.getMinutes()+''+currentTime.getSeconds();
	return '<p id=\"flv_'+new_id+'\"><'+'script type='+'\"text/javascript\"'+'>'+'var so = new SWFObject(\"http://www.barmleczny.com/plugins/jw_player/mediaplayer.swf\",\"flv_' + new_id + '\",\"320\",\"240\",\"8\");so.addParam(\"allowfullscreen\",\"false\");so.addParam(\"allowscriptaccess\",\"always\");so.addVariable(\"file\",\"' + src + '\");so.addVariable(\"height\",\"240\");so.addVariable(\"width\",\"320\");so.write(\"flv_'+new_id+'\");'+'<'+'/script'+'>'+'<'+'/p'+'>';
}

function fileMP3(src) {
	var currentTime = new Date(); 
	var year = currentTime.getFullYear();
	var month = currentTime.getMonth() + 1;
	var day = currentTime.getDate();
	var new_id = year+''+month+''+day+'_'+currentTime.getHours()+''+currentTime.getMinutes()+''+currentTime.getSeconds();
	return '<p id=\"mp3_'+new_id+'\">'+'<'+'script type='+'\"text/javascript\"'+'>'+'var so = new SWFObject(\"http://www.barmleczny.com/plugins/jw_player/mediaplayer.swf\",\"mp3_' + new_id + '\",\"320\",\"20\",\"8\");so.addParam(\"allowfullscreen\",\"false\");so.addParam(\"allowscriptaccess\",\"always\");so.addVariable(\"file\",\"' + src + '\");so.addVariable(\"height\",\"20\");so.addVariable(\"width\",\"320\");so.write(\"mp3_'+new_id+'\");'+'<'+'/script'+'>'+'<'+'/p'+'>';
}
*/


function writeFlash(p) {
	writeEmbed(
		'D27CDB6E-AE6D-11cf-96B8-444553540000',
		'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0',
		'application/x-shockwave-flash',
		p
	);
}
function writeFlashFLV(p) {
	writeEmbedFLV(
		'application/x-shockwave-flash',
		p
	);
}
function writeMP3(p) {
	writeEmbedMP3(
		'application/x-shockwave-flash',
		p
	);
}
	
function writeShockWave(p) {
	writeEmbed(
	'166B1BCA-3F9C-11CF-8075-444553540000',
	'http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0',
	'application/x-director',
		p
	);
}

function writeQuickTime(p) {
	writeEmbed(
		'02BF25D5-8C17-4B23-BC80-D3488ABDDC6B',
		'http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0',
		'video/quicktime',
		p
	);
}

function writeRealMedia(p) {
	writeEmbed(
		'CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA',
		'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0',
		'audio/x-pn-realaudio-plugin',
		p
	);
}

function writeWindowsMedia(p) {
	p.url = p.src;
	writeEmbed(
		'6BF52A52-394A-11D3-B153-00C04F79FAA6',
		'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701',
		'application/x-mplayer2',
		p
	);
}

function writeEmbed(cls, cb, mt, p) {
	var h = '', n;

	h += '<object classid="clsid:' + cls + '" codebase="' + cb + '"';
	h += typeof(p.id) != "undefined" ? 'id="' + p.id + '"' : '';
	h += typeof(p.name) != "undefined" ? 'name="' + p.name + '"' : '';
	h += typeof(p.width) != "undefined" ? 'width="' + p.width + '"' : '';
	h += typeof(p.height) != "undefined" ? 'height="' + p.height + '"' : '';
	h += typeof(p.align) != "undefined" ? 'align="' + p.align + '"' : '';
	h += '>';

	for (n in p)
		h += '<param name="' + n + '" value="' + p[n] + '">';

	h += '<embed type="' + mt + '"';

	for (n in p)
		h += n + '="' + p[n] + '" ';

	h += '></embed></object>';

	document.write(h);
}
function writeEmbedFLV(mt, p) {
	var h = '', n;

	h += '<embed type="' + mt + '" src="http://www.barmleczny.com/plugins/jw_player/mediaplayer.swf" allowscriptaccess="always" allowfullscreen="true" flashVars="file='+p.src+'"';

	for (n in p)
		h += n + '="' + p[n] + '" ';

	h += '></embed>';

	document.write(h);
}
function writeEmbedMP3(mt, p) {
	var h = '', n;

	h += '<embed type="' + mt + '" src="http://www.barmleczny.com/plugins/jw_player/mediaplayer.swf" allowscriptaccess="always" allowfullscreen="false" flashVars="file='+p.src+'" width="300" height="20"';

	h += '></embed>';

	document.write(h);
}
