function showFlash(file)
{
	
	//var file = '/mk2/flash/MKII_3d(2009)(b).swf';

	var xPos;
	var yPos;


	if (screen.width == "800")
	{
		xPos = "750";
		yPos = "300";
	}

	else if ( screen.width > "800" && screen.width <= "1024" )
	{
		xPos = "768";
		yPos = "309";
	}

	else if ( screen.width > "1024" && screen.width <= "1280" )
	{
		xPos = "1048";
		yPos = "420";
	}

	else if ( screen.width > "1280" && screen.width <= "1440" )
	{
		xPos = "1220";
		yPos = "490";
	}

	else if ( screen.width > "1440" && screen.width <= "1680" )
	{
		xPos = "1220";
		yPos = "490";
	}

	else if ( screen.width > "1680" && screen.width <= "1920" )
	{
		xPos = "1445";
		yPos = "580";
	}


	document.write ('<object id="site" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write ('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ');
	document.write ('width="'+xPos+'" height="'+yPos+'">');
	document.write ('<param name="movie" value="'+file+'">');
	document.write ('<param name="quality" value="high">');
	document.write ('<embed src="'+file+'" quality="high" ');
	document.write ('pluginspage="http://www.macromedia.com/go/getflashplayer" ');
	document.write ('type="application/x-shockwave-flash" width="'+xPos+'" height="'+yPos+'"></embed></object>')
}
