/* Flash Object Function */
function flash (width,height,path,transp){

document.write('<OBJECT codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+width+'" HEIGHT="'+height+'" id="top1" ALIGN="left">');
document.write('<PARAM NAME="movie" VALUE="'+path+'"><PARAM NAME="quality" VALUE="high">');
if(transp==1){
 document.write('<PARAM NAME="wmode" VALUE="transparent">');
}
document.write('<EMBED src="'+path+'" quality=high ');
if(transp==1){ document.write('wmode=transparent ');}
document.write('WIDTH="'+width+'" HEIGHT="'+height+'" NAME="prezentacja" ALIGN="left" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT>');

}
