//version 1.1
function placerFlash(width,height,url,transparent){
	flash='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"  width="'+width+'" height="'+height+'" >';
	if(transparent==true){
		flash+='<param name="wmode" value="transparent">';
	}
	flash+='<param name="quality" value="high">';
	flash+='<param name="movie" value="'+url+'">';
	
	//document.write('<param name="movie" value="'+url+'">');
	if(transparent==true){
		flash+='<embed src="'+url+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>';
	}else{
		flash+='<embed src="'+url+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>';
	}
	flash+='</object>';
	document.write(flash);
}


