function includeFlash(params, bgcolor, width, height)
{
    document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" name=myFlash id=myFlash WIDTH='+width+' HEIGHT='+height+'>\n');
    document.write('<PARAM NAME=movie VALUE="' + params + '">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE='+bgcolor+'>\n');
	document.write('<EMBED src="' + params + '" quality=high name=myFlash bgcolor='+bgcolor+' WIDTH='+width+' HEIGHT='+height+' allowScriptAccess=sameDomain TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">\n');
	document.write('</EMBED>\n');
    document.write('</OBJECT>\n');
 }

function includeFlashBack(params, width, height)
{
    document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" WIDTH='+width+' HEIGHT='+height+'>\n');
    document.write('<PARAM NAME=movie VALUE="' + params + '">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<PARAM NAME=quality VALUE=high>\n');
	document.write('<PARAM NAME=wmode value=transparent />\n');
	document.write('<EMBED src="' + params + '" quality=high wmode=transparent WIDTH='+width+' HEIGHT='+height+' allowScriptAccess=sameDomain TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">\n');
	document.write('</EMBED>\n');
    document.write('</OBJECT>\n');
 }

function showPOPUP(filename, w, h){
	if (document.all)
		var xMax = screen.width, yMax = screen.height-16;
	else
	{
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 800, yMax=600;
	}	
	//var w = 550;
	//var h = 400;
	var xOffset = (xMax - w)/2, yOffset = (yMax - h)/2;

	var pop = window.open(filename, '','width='+w+',height='+h+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',menubar=0,toolbar=0,status=no,resizable=no,scrollbars=no');

}
