function TargetBlank (url) {
	var win = window.open (url);
	if (win == null) {
		return true;
	}
	else {
		return false;
	}
}

function CheckForm () {
	var chyba = false;
	var hlaska = "Vyplňte prosím správně Váš:\n";
	if (document.getElementById('name').value == '') {
		chyba = true;
		hlaska += "- název firmy nebo Vaše jméno\n";
	}
	var email = document.getElementById('email').value;
	if (!email.match ('^[_a-zA-Z0-9\.\-]+@[_a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,4}$')) {
		chyba = true;
		hlaska += "- Vaši emailovou adresu\n";
	}
	if (document.getElementById('text').value == '') {
		chyba = true;
		hlaska += "- text vzkazu\n";
	}
	var antispam = document.getElementById('crc').value;
	if (!antispam.match ('^[0-9]{1,2}$')) {
		chyba = true;
		hlaska += "- anti-spam číslo\n";
	}
	if (chyba) {
		alert (hlaska);
		return false;
	}
	else {
		return true;
	}
}
