function img1(name) {
	img=new Image();
    img.src = '/i/'+name+'.jpg';
	document.images[name].src=img.src;
}

function img2(name) {
	img=new Image();
    img.src = '/i/'+name+'b.jpg';
	document.images[name].src=img.src;
}


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" VALIGN="middle"ALIGN="center>');
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="center" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT>');

}
