function embedFlash(flashLink, width, height, imageLink) {
	// document.write('<embed src="'+flashLink+'" quality="high" bgcolor="#FFFFFF" onfocus="top.focus();" width="'+width+'" height="'+height+'" name="player" align="" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer" swLiveConnect="true"></embed>');
	// return '<embed src="'+flashLink+'" quality="high" bgcolor="#FFFFFF" onfocus="top.focus();" width="'+width+'" height="'+height+'" name="player" align="" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer" swLiveConnect="true"></embed>'
	document.write('<object id="flobject" width="' + width + '" height="' + height + '" type="application/x-shockwave-flash" data="' + flashLink + '">' +
						'<param name="wmode" value="transparent">' +
						'<param name="movie" value="' + flashLink + '" \/>' +
						'<img src="' + imageLink + '"  alt="" \/>' +
			'		<\/object>');	
}

function flashTeaser(src, w, h, img){
	this.src = src;
	this.w	= w;
	this.h	= h;
	this.img = img; 
}
var aFlashFiles = new Array();

