var flashPop;
function showMovie()
{
	document.getElementById("pop").style.display = "block";
	
	var ie = navigator.appName.indexOf("Microsoft") != -1;
		flashPop = (ie) ? window['flash'] : document['flash'];

	//flashPop.play();
	flashPop.asFunc();
}

function hideswf()
{
	// this funciton only call by flash
	document.getElementById("pop").style.display = "none";

}