﻿$(function()
   {
	  if(vs_isIE(5))
		{
			show_flash();
		}
   }
)

function show_flash()
{
  	var strobject='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+
			'width="340px" height="195px" '+
			'codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">'+
			'<param name="movie" value="/swf/go_enter.swf" />'+
			'<param name="quality" value="high" />'+
			'<param name="wmode" value="transparent" />'+

	'</object>';
	$("#go_enter").html(strobject);
	//document.body.insertAdjacentHTML("afterBegin",strobject);
}

function vs_isIE(ver, exact)
{
	var b = false;
	var v;
	var agt = navigator.userAgent.toLowerCase();
	var i = agt.indexOf("msie ");

	if(!ver)
	{
		ver = 5;
	}
	
	if(i >= 0)
	{
		v = parseFloat(agt.substring(i + 5));

		if(!isNaN(v))
		{
			if(exact)
			{
				b = (v == ver);
			}
			else
			{
				b = (v >= ver);
			}
		}
	}

	return b;
}
