function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features).focus();
}

function sprawdz(adres) {
	if (adres != "") {
		var re = new RegExp("[^@]{1,}[@]{1}[^@.]{1,}[.]{1}[^@]{1,}","gi");
		var wynik = re.test(adres);
		if (wynik == true) {
			return true;
		}
		if (wynik == false) {
			return false;
		}
	}
}

function sprawdz_email(email)
{
    if(!preg_match('/^[a-z0-9.-_]+@[a-z0-9-_]+.([a-z0-9-_]+.)*?[a-z]+$/is', email)) {
        return false;
}
    else {
        return true;
}
}

function dodaj()
{
	if(email(document.forms['newsletter']['email'].value)) {
		MM_openBrWindow('newsletter_window.php?email='+document.forms['newsletter']['email'].value
			+"&do=add",'newsletter','width=200,height=150');
	}
	else
		alert("Niepoprawny adres e-mail");
}

function usun()
{
	if(email(document.forms['newsletter']['email'].value)) {
		MM_openBrWindow('newsletter_window.php?email='+document.forms['newsletter']['email'].value
			+"&do=remove",'newsletter','width=200,height=150');
	}
	else
		alert("Niepoprawny adres e-mail");
}

function rozwin(id){
var stan = document.getElementById(id).style.display;
if(stan == 'block')
{
stan = document.getElementById(id).style.display = 'none';
}
else
{
stan = document.getElementById(id).style.display = 'block';
}
}


function change(poz){
var poz = poz;
for(var i=1; i<10; i++){
document.getElementById("cel" + i).style.display="none";
document.getElementById("cel" + poz).style.display="block";
}
}

function displayWindow(url, width,height) {
        var Win = window.open(url,"displayWindow", 'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );
}

function popupWindow(url) {
  window.open(url,'popupWindow','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')
}

function print_email(user, dom) {
  site = "compisland."+dom;
  document.write('<a class="news" href=\"mailto:'+ user + '@' + site + '\">');
  document.write(user+'@'+site+'</a>');
}

function loading()
{
	if(loaded==1){ document.getElementById('blad').innerHTML = "Przepraszamy. Strona o takim adresie nieistnieje."; }
}

function openImg(url,width,height)
{
var ZoomInWindow = window.open("","displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no');
with(ZoomInWindow.document)
  {
  writeln('<html><head><title>NewSite Portfolio</title></head>')
  writeln('<body topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0 marginheight=0 marginwidth=0 onBlur="window.close();">')
  writeln('<a href="javascript:window.close()"><img src="' + url + '" alt="" border="0" /></a>')
  writeln('</body></html>');
  close();
  }
}
function submitform()
{
  document.stan.submit();
}
