﻿var height;
var intervalId;
function refreshProgress() {
	var p=document.getElementById("p");
	var b=document.getElementById("b");
	var m=getFlashMovieObject("mov");
	if(m && p) {
		if(m.PercentLoaded()<100) {
			p.innerHTML=m.PercentLoaded()+"%";
		} else {
			p.innerHTML="100%";
			document.getElementById("afgmovie").style.display="none";
			document.getElementById("afgmovie").innerHTML="";
			document.getElementById("showmovie").style.visibility="visible";
			document.getElementById("showmovie").style.height=height+"px";
			window.clearInterval(intervalId);
		}
		b.style.width=m.PercentLoaded()*2+"px";
	}
}
function playGame(s,w,h) {
	if(!h) {
		h=480;
	}
	if(!w) {
		w=636;
	}
	height=h;
	document.getElementById("showmovie").innerHTML='<object id="mov" codeBase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0 classid=CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+w+'" height="'+h+'" id="movie" ><param name="movie" value="http://www.irandomgame.com/games/'+s+'.swf"> <PARAM NAME="quality" VALUE="high"><PARAM NAME="scale" VALUE="exactfit"><PARAM NAME="menu" VALUE="true"><embed name="mov" src="http://www.irandomgame.com/games/'+s+'.swf" width="'+w+'" height="'+h+'" quality="high"  swLiveConnect="false" scale="exactfit" menu="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></object>'
	document.getElementById("showmovie").style.height="0px";
	intervalId = window.setInterval("refreshProgress()",50);
}
function getFlashMovieObject(m) {
	if(window.document[m]) {
		return window.document[m];
	}
	if(navigator.appName.indexOf("Microsoft Internet")==-1) {
		if(document.embeds && document.embeds[m]) {
			return document.embeds[m];
		}
	} else {
		return document.getElementById(m);
	}
}

