function ShowPlayerFlash(width, height, url, flashVars, player)
{                                     
	document.write("<object type='application/x-shockwave-flash' data='" + url + "' width='"+width+"' height='"+height+"'>");
	document.write('  <param name="movie" value="'+ url +'" />');
	document.write('  <param name="wmode" value="transparent" />');
	if (player == '1pixelout')
		document.write('  <param name="menu" value="false" />');
	document.write('  <param name="quality" value="high" />');
	document.write('  <param name="FlashVars" value="'+ flashVars +'">');
	document.write("<embed src='" + url + player + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed></object>");
}

function giga(width, height, url)
{
 document.write('<embed src="' + url + '" wmode="transparent" width="'+width+'" height="'+height+'"></embed>');

}