function flashPlayer(name, sizex, sizey, value, alphavar) {
 
 document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + sizex + '" height="' + sizey + '">');
 document.write('<param name="movie" value="' + name + '">');
 document.write('<param name="quality" value="high">');
 document.write('<param name="menu" value="false">');
 if( alphavar == 'Y'){
 	
     document.write('<param name="wmode" value="transparent">');
 
 }
 document.write('<PARAM NAME="FlashVars" VALUE="' + value + '">');
 document.write('<embed src="' + name + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + sizex + '" height="' + sizey + '"');
 document.write('FlashVars="' + value + '"></embed>');
 document.write('</object>');
}


function flashPlayer2(name, width, height, dep1, dep2) {
	/*
	if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js.");
	} else {
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width', width,
			'height', height,
			'src', '/fla/' + name + '.swf',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'window',
			'devicefont', 'false',
			'id', name,
			'bgcolor', '#ffffff',
			'name', name,
			'menu', 'true',
			'allowFullScreen', 'false',
			'allowScriptAccess','sameDomain',
			'movie', '/fla/' + name + '.swf?depth0=' + dep1 + '&depth1=' + dep2,
			'salign', ''
			); //end AC code
	}
*/
	document.write(
		'<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="' + width + '" height="' + height + '" id="Gom_GNB" align="middle">' +
		'<param name="allowScriptAccess" value="sameDomain" />' +
		'<param name="allowFullScreen" value="false" />' +
		'<param name="movie" value="/fla/' + name + '.swf?depth0=' + dep1 + '&depth1=' + dep2 + '" />' +
		'<param name="quality" value="high" />' +
		'<param name="bgcolor" value="#ffffff" />' +
		'	<embed src="/fla/' + name + '.swf" quality="high" bgcolor="#ffffff" width="' + width + '" height="' + height + '" name="Gom_GNB" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
		'</object>'
	);
}