// eloMuza.pl

function newWindow(url, title, width, height) {
	var newWindow = window.open(url, title, 'menubar=no, top=1, toolbar=no, location=no, scrollbars=yes, resizable=no, status=no, width=' + width + ', height=' + height);
	newWindow.focus() 
}

document.write('<script type="text/javascript" src="includes/scripts/mp3/swfobject.js"></script>');

function f(target_url,win_name,width,height) {
if(!width){
		width=550;
	}
	if(!height){
		height=280;
	}
  var new_win = window.open(target_url,win_name,'resizable=no,scrollbars=yes,menubar=yes,toolbar=yes,width='+width+',height='+width+',top=0,left=0');
  new_win.focus();
}
function zmien_widocznosc(element){
	co = document.getElementById(element);
	if(co.style.display == "" || co.style.display == "block"){
		co.style.display = "none";
	}
	else if(co.style.display == "none"){
		co.style.display = "block";
	}
}