function checkMail() {
	var cont = document.getElementById('onlineQuestionFM').elements;
	var x = cont['emailTF'].value;

	var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;

	if (filter.test(x)) 
		return true;
	else {
		alert('Zadán špatný formát e-mailové adresy. Dotaz nebyl odeslán.\n\nBad e-mail format. E-mail was not sent.');
		return false;
	}
}

function popupWindow(wUrl, wName, wSpec) {
	var popupWindow = window.open(wUrl, wName, wSpec);
	
	popupWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'+
	'<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>'+ wName + '</title></head>');
	popupWindow.document.write('<HTML><BODY style="margin: 0; padding: 0;">');
	popupWindow.document.write('<img src="' + wUrl + '" alt="' + wName + '" onclick="window.close();"/>');
	popupWindow.document.write('</BODY></HTML>');
	popupWindow.document.close();
	

}
