link = 'http://' + window.location.host;

function goto(link){
	window.location.href = 'http://'+ window.location.host + link;
}

function option(id){
	if(document.getElementById(id).style.display == 'none') document.getElementById(id).style.display='block'; 
	else document.getElementById(id).style.display='none';
}

function chowaj(id){
	document.getElementById(id).style.display='none';
}

function pokaz(id){
	document.getElementById(id).style.display='block';
}

function sprawdz_pobierz_form(id) 
{
	var formul = document.getElementById(id);
	if(document.getElementById('kod').value=='' || document.getElementById('email').value=='' || document.getElementById('imie').value=='') 
	{ 
		alert("Nie wypełniłeś wymaganych pól."); 
	}
	else 
	{
		if(formul.email.value.match(/^[0-9a-z_.-]+@([0-9a-z-]+.)+[a-z]{2,6}$/)) 
		{
			formul.submit();
		}
		else 
		{
			alert("Wprowadzony adres email jest niepoprawny.");
			return false;
		}
			
	}
}

