 	var oknooferta;
	function noweOkno(oknooferta) {
		Oferta = window.open(oknooferta,'Oferta','width=900,height=690,screenX=100,screenY=100,left=100,top=100,location=no,menubar=no,scrollbars=yes')
} 	

function showElement(sName) {
var sStyle = 'block';
	
	if(document.getElementById(sName)) {
		document.getElementById(sName).style.display = sStyle;
	}
}
function hideElement(sName)
{
	if(document.getElementById(sName)) {
		document.getElementById(sName).style.display = 'none';
	}
}
function zmieniacz(sTr) {
 var i;
		if (sTr == 'sprzedaz') {
			showElement('sprzedaz');
		    hideElement('wynajem');
			hideElement('prosze');
			actColor('sprzedaznag');
			pasColor('wynajemnag');
		} else {
			showElement('wynajem');
			hideElement('prosze');
			actColor('wynajemnag');
			hideElement('sprzedaz');
			pasColor('sprzedaznag');
		}
 }
function pasColor(sName)
{
	if(document.getElementById(sName)) {
		document.getElementById(sName).style.color = '#999999';
	}
}
function actColor(sName)
{	

	if(document.getElementById(sName)) {
		document.getElementById(sName).style.color = '#A00000';
	}
}
