var callFlag = false;

function removeFlash1() {
	$("#prflash1").remove();
}

function removeFlash2() {
	$("#prflash2").remove();
}

function removeFlash3() {
	$("#prflash3").remove();
}

function callPlayer1() {
	var fstr1 = '<div id="prflash1"><object id="take1-vc" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="240" height="320"><param name="movie" value="motion/movie1.swf" /><param name="wmode" value="transparent" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="motion/movie1.swf" width="240" height="320"><param name="wmode" value="transparent" /><!--<![endif]--><!--[if !IE]>--></object><!--<![endif]--></object></div>';
	$("#page").prepend(fstr1);
};

function callPlayer2() {
	var fstr2 = '<div id="prflash2"><object id="take2-vc" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="120" height="160"><param name="movie" value="motion/movie2.swf" /><param name="wmode" value="transparent" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="motion/movie2.swf" width="120" height="160"><param name="wmode" value="transparent" /><!--<![endif]--><!--[if !IE]>--></object><!--<![endif]--></object></div>';
	$("#page").prepend(fstr2);
}

function callPlayer3() {
	if(!callFlag){
		removeFlash2();
		var fstr3 = '<div id="prflash3"><object id="take3-vc" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="240" height="320"><param name="movie" value="motion/movie3.swf" /><param name="wmode" value="transparent" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="motion/movie3.swf" width="240" height="320"><param name="wmode" value="transparent" /><!--<![endif]--><!--[if !IE]>--></object><!--<![endif]--></object></div>';
		$("#page").prepend(fstr3);
		callFlag = true;
	}
};


function take3End() {
	removeFlash3();
	callFlag = false;	
}