function onRowOver(t, col) {
	t.style.backgroundColor = '#'+col;
	t.onmouseout = function() {
			t.style.backgroundColor = '';
	};
};

function onRowOver2(t, col) {
	t.style.backgroundColor = '#'+col;
	t.onmouseout = function() {
			t.style.backgroundColor = '#A6CAF0';
	};
};


function PopUp(l) {
	window.open(l,'','resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=120,height=120,left=0,top=0');
	return false;
}

function PopUpScrolled(l) {
	window.open(l,'','resizable=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,fullscreen=no,dependent=no,width=700,height=550,left=0,top=0');
	return false;
}

function reverseVisiblity(p_id) {

	
	var o = document.getElementById(p_id);
	if(o.style) {
		if(o.style.display == 'none') {
			o.style.display = '';
		} else
			o.style.display = 'none';
		
	} else {
		o.visibility = "show";
	}
}

function checkOrderForm() {
	var t = document.forms['fconfirm'];
	
	if(t.imie_nazwisko.value == "" || t.kod_pocztowy.value == "" || t.miasto.value == "" || t.ulica.value == "" || t.telefon.value == "" || t.email.value == "") {
		alert('Nie wypełniłeś obowiązkowch pól formualrza.');
		return false;
	}
	
	if(t.faktura.checked == true) {
		if(t.nazwa_firmy.value == "" || t.nip.value == "" || t.adres_pocztowy.value == "") {
			alert('Nie wypełniłeś obowiązkowch pól formualrza.');
			return false;
		}
	}
	return true;
}

