function flash() 
{
var object = new String;
var params = new String;
var embedParams = new String;

this.init = function(objectID, flashURL, W, H) 
{
object = "<object id='" +objectID+ "' width='" +W+ "' height='" +H+ "' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0'>"; 
object += "";
embedParams = "src='" +flashURL+ "' ";
embedParams = "width='" + W + "' height='" + H + "' ";
}

this.param = function(param, value)
{
params += "";
embedParams += param + "='" +value+ "' ";
}

this.load = function() 
{
var embedTag = "<object " + embedParams + "pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' ></object>";
var objTag = object + params + embedTag + "</object>";
document.write(objTag);
}

this.debug=function()
{
var objTag = object + params + embedTag + "</object>";
alert(objTag);
}
}


