function newwin(link, typ){
	var x; var y; var opt;
	switch(typ){
		case "pow": x=320; y=320; break;
		case "graf": x=770; y=450; opt="scrollbars"; break;
		case "scrv": x=600; y=400; opt="resizable, status"; break; 
	}
	window.open(link, typ, "height="+y+", width="+x+", left=115, top=215, "+opt);
}
function mdown(title, opis, link, typ){
	var dod;
	switch(typ){
		case "scrv": dod='[ <a href="javascript:newwin(\''+link+'.htm\', \'scrv\')">Zobacz</a> ]'; break; 
	}
	var end = '<p><img src="../_img/pkt_strz.gif"><b>'+title+'</b><br>'+opis+'<br>';
	end += '<b>[ <a href="'+link+'.zip">Pobierz</a> ]&nbsp; '+dod+'</b></p>'
	return document.write(end)
}