function toggle(obj) {
   obj.className == 'closed' ? obj.className = 'opened' : obj.className = 'closed';
}


function jezyk() {
	if (getCookie('jezyk')=='english')
		 setCookie('jezyk','polski',365);
	 else
	   setCookie('jezyk','english',365);
	
	window.location.reload();
}

function isValidEmail(formularz) {

   var komunikat = '';
	 
	 var form = document.forms[formularz];
	 
	 if (formularz == 'newsletter') {
	 
	 	 var email = form.email2.value;

	 } else {
	 			
		 var email = form.email1.value;
	 
	 	 var name = form.name1.value;
	 	 
	 	 if (name.length == 0 || name == 'Imię i nazwisko')
	 		 komunikat += ('\nWypełnij pole Imie Nazwisko');
		 
		 var message = form.message.value;
		 
		 if (message.length == 0 || message == 'Wiadomość')
	 		 komunikat += ('\nWypełnij pole Wiadomość');	 
	 
	 }
	 
	 
	 if (!(email.indexOf(".") > 2) || !(email.indexOf("@") > 0))
	 		 komunikat += ('\n Niepoprawny adres email');
	 
	 
	 
	 if(komunikat != '') {
    					alert(komunikat); 
    					return false;
   } 
    
   else return true;

}


function externalLinks() { 
   if (!document.getElementsByTagName) return; 
   var anchors = document.getElementsByTagName("a"); 

   for (var i=0; i<anchors.length; i++) { 
	var anchor = anchors[i]; 
	if (anchor.getAttribute("href") && anchor.getAttribute("href").substr(0,7) == "http://") 
       if (anchor.getAttribute("href").substr(0,28) != "http://www.lodzartcenter.com")	// specify URL to avoid - needed by IE
		anchor.target = "_blank";
   }

}
