function changeLang(adr){
	window.location.href="http://localhost/wozniakkocur/?address="+adr;
}
	
function checkURL(){
	
	if(swfobject.getQueryParamValue("address")){		
		window.location.href="http://localhost/wozniakkocur/#/"+swfobject.getQueryParamValue("address");				
	}
	
	var str=new String(window.location.href);
	
	if(str.indexOf("/#/en")>0){
		document.title="Woźniak Kocur, Polish law firm. Litigation, arbitration, corporate matters, M&A";
	}else{
		document.title="Kancelaria Woźniak Kocur. Spory sądowe, arbitraż, sprawy korporacyjne, M&A";
	}
}
	
	
