﻿function ShowBox() {
   document.getElementById("fads").style.display = "block";  
}

function closeShow(toClose) {
   document.getElementById(toClose).style.display = "none";  
}
function closeBox(toClose) {
   document.getElementById(toClose).style.display = "none";
   setCookie(toClose, "closed", 30);
}
function setCookie(cName, value, expiredays) {
   var expDate = new Date();
   expDate.setDate(expDate.getDate()+expiredays);
   document.cookie= cName + "=" + escape(value) + 
   ";expires=" + expDate.toGMTString() + ",path=/;domain=istaszow.pl";
}
function loadMsg(msgClass) {
   msg = document.getElementsByTagName("div");
   for (i=0; i<msg.length; i++) {
      if(msg[i].className == msgClass) {
         if(document.cookie.indexOf(msg[i].id) == -1) {
            msg[i].style.display = "block";
         }
      }
   }
}
function validateForm()
{
var vimie=document.forms["subscribeform"]["txt_imie"].value;
var vemail=document.forms["subscribeform"]["txt_email"].value;

	if (vimie==null || vimie=="") {
		alert("Podaj imię");
		return false;
	}
	if (vemail==null || vemail=="") {
		alert("Podaj email");
		return false;
	}
	if (!document.forms["subscribeform"]["txt_regulamin"].checked) {
		alert("Zaakceptuj regulamin");
		return false;
	}
	closeBox('fads');
}


window.onload = function(){
    //loadMsg('fads_bgbox');
	setTimeout("loadMsg('fads_bgbox')", 10000);
	};
