// forum
function pop_forum_form(file) {
	var w=750;
	var h=515;
	var l=(40);
	var t=(20);

	window.name="_target";
	window.open (file,'_blank','scrollbars=0,status=0,menubar=0,resizable=1,location=0,toolbar=0,width=' + w +
	',height=' + h + ',left=' + l + ',top=' + t);
}

//window popup - GALERIE
var pole;
            function galerie(pole)
	               {
			       var titlebody = "height="+pole[1]+",width="+pole[0]+",resizable=1,scrollbars=0";
			       newwindow=window.open('','name',titlebody);
			       newwindow.document.write('<html><head><title>Galerie</title></head><body text="#000000" bgColor="white" leftMargin="0" topMargin="0" MARGINHEIGHT="0" MARGINWIDTH="0">');
			       newwindow.document.write('<div align="center">');
			       newwindow.document.write(pole[2]);
			       newwindow.document.write('<br />')
			       newwindow.document.write(pole[4]);
			       newwindow.document.write('<img title="po kliknutí se popup okno zavøe" onclick="window.close()" border="0" src="http://www.rozhlas.cz/_obrazek/');
			       newwindow.document.write(pole[3]);
			       newwindow.document.write('" />');
			       newwindow.document.write('</div>');
			       newwindow.document.write('</body></html>');
			       newwindow.document.close();
		       }

