// JavaScript Document

//*** by Pó :-)

function UseSettingPage()
{
	//vars
	this.stringUtility 	= null;
	this.width 			= null;
	this.height 		= null;
	this.swf 			= null;
	this.wmode 			= null;
	
	//constructor
	this.UseSettingPage = function()
	{
		//nothing
	}
	
	//==================================================================================================================================

	//construct vars
	this.setWidth 	= function(param) { this.width 	= param; }
	this.setHeight 	= function(param) { this.height = param; }
	this.setSwf 	= function(param) { this.swf 	= param; }
	this.setWmode 	= function(param) { this.wmode 	= param; }

	//==================================================================================================================================

	this.PutFlash = function()
	{
		var string = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0\" width='" + this.width + "' height='" + this.height + "'>";
			string += "<param name=\"movie\" value='" + this.swf + ".swf' />";
			string += "<param name=\"quality\" value=\"high\" />";
			string += "<param name=\"wmode\" value=\"transparent\" />";
			string += "<param name=\"swfversion\" value=\"6.0.65.0\" />";
			string += "<param name=\"allowFullScreen\" value=\"true\"></param>";
			string += "<param name=\"allowscriptaccess\" value=\"always\"></param>";
			string += "<embed ";
			string += "src='" + this.swf + ".swf' quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" ";
			string += "width='" + this.width + "' height='" + this.height + "' wmode='" + this.wmode + "' allowscriptaccess=\"always\" allowfullscreen=\"true\">";
			string += "</embed>";
			string += "</object>";
			
			document.write(string);
	}

	//==================================================================================================================================

}