function swf(){
    var me =this;
    this.src="";
    this.width="400";
    this.height="300";
	this.altimg="";
    
    this.drawIn=function(containerID){
		document.getElementById(containerID).innerHTML=me.buildContent();
    }
	this.draw=function(){
		document.write(me.buildContent());	
	}
    
	this.buildContent=function(){
		if(navigator.userAgent.indexOf('iPhone') != -1)
		{
			//show static image
			var imgHtml="<img src='"+ me.altimg +"' width='"+me.width+"' height='"+me.height+"' alt='imgflash' />";
			if(me.altimg==""){imgHtml="Alt Image not set.";}
			//document.getElementById(containerID).innerHTML="<img src='"+ me.altimg +"' width='"+me.width+"' height='"+me.height+"' alt='imgflash' />";
			return imgHtml;
		}
		else
		{
			//dv = document.getElementById('headerContent');
			//combine all elements
        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;
			if(me.src==""){swfHtml="Flash source not set.";}
			return swfHtml;
		
		}   
		
	}
}
