function sprawdz_glosy(){
  var strHref = window.location.href;
  //alert(window.location.href);
  if ( strHref.indexOf("/gra/") > -1 ){
	  if ( strHref.indexOf(".html/") > -1 ){
	    document.getElementById('glosowanie').style.display = 'none';
		document.getElementById('zaglosowane').style.display= 'block';
	  }
	  else{
	  	document.getElementById('glosowanie').style.display = 'block';
		document.getElementById('zaglosowane').style.display= 'none';
	  }
	}
} 
