// Netventure, http://www.netventure.pl/

function isEmail(text) {
	var i,j;
	if ((i = text.indexOf("@",0)) <= 0) { 		// @ sign
		alert("Podaj poprawny adres email!");
		return false;
	}
	j = text.indexOf(".", i);
	if (j < 0 || j >= text.length-1) {			// .x after @
		alert("Podaj poprawny adres email!");
		return false;
	}
	return true;
}

function verifyEmail(text) {
	if (text != "") {
		var i,j;
		if ((i = text.indexOf("@",0)) <= 0) { 		// @ sign
			alert("Podaj poprawny adres email!");
			return false;
		}
		j = text.indexOf(".", i);
		if (j < 0 || j >= text.length-1) {			// .x after @
			alert("Podaj poprawny adres email!");
			return false;
		}
		return true;
	}
}

