// JavaScript Document

function lifestory(file) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="320" height="290">\n');
	document.write('<param name="movie" value="lifestory_Liwienski.swf">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<embed src="lifestory_Liwienski.swf" quality="high"');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="290"></embed>\n');
	document.write('</object>');
}
function video(file) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="320" height="290">\n');
	document.write('<param name="movie" value="lifestory_' + file + '.swf">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<embed src="lifestory_' + file + '.swf" quality="high"');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="290"></embed>\n');
	document.write('</object>');
	//document.write('This is my file.  It\'s called ' + file +'.');
}

function video2(file) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="320" height="290">\n');
	document.write('<param name="movie" value="' + file + '.swf">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<embed src="' + file + '.swf" quality="high"');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="290"></embed>\n');
	document.write('</object>');
	//document.write('This is my file.  It\'s called ' + file +'.');
}


function flash(file, width, height) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="' + width + '" height="' + height + '">\n');
	document.write('<param name="movie" value="' + file + '.swf">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<embed src="' + file + '.swf" quality="high"');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>\n');
	document.write('</object>');
}

