function ShowFlash(Width, Height, Src, Quality, Title) {
	
/*	
	var now		= new Date();
	var year	= now.getFullYear();
	var month	= now.getMonth();
	var day		= now.getDay();
	var hour	= now.getHours();
	var min		= now.getMinutes();
	var sec		= now.getSeconds();
*/

//	var Target	= "swf/" + Src;
	var Target	= Src;
	
	document.write(
		   "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' title='" + Title + "' width='" + Width + "' height='" + Height + "' codebase='//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0'>"
		+  "<param name='movie' value='" + Target + "'>"
		+  "<param name='quality' value='" + Quality + "'>"
		+  "<param name='menu' value='false'>"
		+  "<param name='wmode' value='transparent'>"
		+  "<embed src='" + Target + "' quality='" + Height + "' width='" + Width + "' height='" + Height + "' menu='false' wmode='transparent' pluginspage='//www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed></object>"
	);
}

function ShowFlash2(Width, Height, Src, Quality, Title) {

/*	
	var now		= new Date();
	var year	= now.getFullYear();
	var month	= now.getMonth();
	var day		= now.getDay();
	var hour	= now.getHours();
	var min		= now.getMinutes();
	var sec		= now.getSeconds();
*/

	var Target	= "swf/" + Src;
	
	document.write(
		   "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' title='" + Title + "' width='" + Width + "' height='" + Height + "' codebase='//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0'>"
		+  "<param name='movie' value='" + Target + "'>"
		+  "<param name='quality' value='" + Quality + "'>"
		+  "<param name='menu' value='false'>"
		+  "<embed src='" + Target + "' quality='" + Height + "' width='" + Width + "' height='" + Height + "' menu='false' wmode='transparent' pluginspage='//www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed></object>"
	);
}

