function it(id,ile){
	for (i = 1; i <= ile; i++){
		document.getElementById('zdj_'+i).style.display = 'none';
		document.getElementById('rm_'+i).style.backgroundColor = '#818181';
	}

	document.getElementById('zdj_'+id).style.display = 'block';
	document.getElementById('rm_'+id).style.backgroundColor = '#ACACAC';
}

function sprawdzAdres2(email) {
	var dobryEmail=/^[^@]+@([a-z0-9\-]+\.)+[a-z]{2,4}$/i;
	if (dobryEmail.test(email))
		return true
	else 
		return false;
}

function news_foc(){
	if (document.forms[0].mail.value == 'wpisz swój e-mail' || document.forms[0].mail.value == 'your e-mail address'){
		document.forms[0].mail.value = '';
	}
}
function news_go(){
	if (!sprawdzAdres2(document.forms[0].mail.value)){
		if (lang == 'EN')
			kom	= 'Please complete the e-mail address!';
		else
			kom = 'Wpisz poprawny adres e-mail!';
		
		alert(kom);
	}
	else {
		document.forms[0].submit();
	}
}

