function showBig(p) {
	var id;
	id = document.getElementById((p?p:'bigImg'));
	if (id.style.display == 'block') {
		id.style.display = 'none';
	} else {
		id.style.display = 'block';
	}
}
/**Zamienia emaile z [at] na zwykla mape **/	
function makeEm(id,ip){
	  var a=$(id).getElementsByTagName('a');
	  c = a.length;
	  for(var i=0;i < c;i++){
	     s = a[i].innerHTML;
	     if(s.indexOf('[at]') > -1){
	        s=s.replace('[at]',"@");
	        a[i].innerHTML = s;
	        if( s == 'dzial.techniczny@firma.interia.pl') {
                  a[i].href = 'mailto:'+s+'?subject=['+ip+']&body=Adres Ip to:'+ip;
             } else {
                  a[i].href = 'mailto:'+s;
             }
	        
	     }
	  }
	}
	
function setHome()
{
	var agent = navigator.userAgent.toLowerCase();	
	if( agent.indexOf('chrome/8') != -1 || agent.indexOf('chrome 8') != -1 || 
         agent.indexOf('chrome/9') != -1 || agent.indexOf('chrome 9') != -1 )
	{
		window.location ="/startuj/5/"+window.location.search;
	}
	 else if( agent.indexOf('chrome/10') != -1 || agent.indexOf('chrome 10') != -1 || 
               agent.indexOf('chrome/11') != -1 || agent.indexOf('chrome 11') != -1 ||
               agent.indexOf('chrome/12') != -1 || agent.indexOf('chrome 12') != -1 || 
               agent.indexOf('chrome/13') != -1 || agent.indexOf('chrome 13') != -1 
               )
	{
		window.location ="/startuj/14/"+window.location.search;
	}
     else if( agent.indexOf('firefox/4') != -1 )
	{
		window.location ="/startuj/2/"+window.location.search;
	}	
	else if( agent.indexOf('firefox/3') != -1 )
	{
		window.location ="/startuj/10/"+window.location.search;
	}
	else if( agent.indexOf('firefox/2') != -1 )
	{
		window.location ="/startuj/6/"+window.location.search;
	}	
	else if( agent.indexOf('opera/9') != -1 && ( agent.indexOf('version/10') != -1 ||  agent.indexOf('version/11') != -1 ))
	{
		window.location ="/startuj/4/"+window.location.search;
	}
	else if( agent.indexOf('opera/9') != -1 && agent.indexOf('version/9') == -1 )
	{
		window.location ="/startuj/9/"+window.location.search;
	}		
     else if( agent.indexOf('msie 9') != -1 && agent.indexOf('opera') == -1 )
	{
		window.location ="/startuj/13/"+window.location.search;
	}
     else if( agent.indexOf('msie 8') != -1 && agent.indexOf('opera') == -1 )
	{
		window.location ="/startuj/12/"+window.location.search;
	}	
	else if( agent.indexOf('msie 7') != -1 && agent.indexOf('opera') == -1 )
	{
		window.location ="/startuj/7/"+window.location.search;
	}
	else if( agent.indexOf('msie 6') != -1 && agent.indexOf('opera') == -1  )
	{
		window.location ="/startuj/1/"+window.location.search;
	}
	
}	
