function showGame(movie, width, height, quality,bgcolor){

	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0" WIDTH="' + width+'"');
	document.write(' HEIGHT="' + height + '" id="FlashContent">');
	document.write('<PARAM NAME="movie" VALUE="' + movie + '"><PARAM NAME="quality" VALUE="' + quality + '">');
	document.write('<PARAM NAME="AllowScriptAccess" VALUE="never"><EMBED src="' + movie + '"');
	document.write(' quality="' + quality + '" WIDTH="' + width + '" HEIGHT="' + height + '" NAME="FlashContent"');
	document.write(' AllowScriptAccess="never" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
  	document.write('<param name="bgcolor" value="'+bgcolor+'">');
	document.write('</EMBED></OBJECT>');
}

function UpdateImage(img,url)
{
    document.getElementById(img).src = url;
}

function toggle(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}

