/* Copyright (c) 2007 Inticco Solutions S.A., www.inticco.com */

function show(url)
{
	window.open(url, '_blank', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150');
}

window.onload = function(){
	for(i in x = document.links)
	{
		if(x[i].rel == 'nofollow')
		{
			x[i].target = '_blank';
		}
	}

	var showHide = document.getElementById('companyInf');
	var parent = showHide.parentNode.childNodes[14];
	var label = document.createElement('label');
	var checkbox = document.createElement('input');

    label.setAttribute('id', 'checkbox_margin');	
	checkbox.setAttribute('type', 'checkbox');
	checkbox.setAttribute('name', 'showHide');
	checkbox.setAttribute('value', '1');
	checkbox.onclick = function(){
		showHide.style.display = showHide.style.display == 'block' ? 'none' : 'block';
	};
	
	label.appendChild(document.createTextNode('Inny adres firmy: '));
	label.appendChild(checkbox);
	parent.appendChild(label);
		
	showHide.style.display = 'none';
}