function swf(){
    var me =this;
    this.src="";
    this.width="400";
    this.height="300";
    
    this.draw=function(containerID){
        
        var swfHtml="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='"+me.width+"' height='"+me.height+"'> <param name='movie' value='"+me.src+"'> <param name='quality' value='high'> <param name='wmode' value='transparent'> <param name='menu' value='false'> <embed src='"+me.src+"' width='"+me.width+"' height='"+me.height+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' menu='false' wmode='transparent'></embed></object>";
        document.getElementById(containerID).innerHTML=swfHtml;
        //combine all elements
        
    }
    
}
