function check_mail(email)
{
	var rgx, ok = false;
  var proto  = "(mailto:)?";
  var usr    = "([a-zA-Z0-9][a-zA-Z0-9_.-]*|\"([^\\\x80-\xff\015\012\"]|\\[^\x80-\xff])+\")";
  var domain = "([a-zA-Z0-9][a-zA-Z0-9._-]*\.)*[a-zA-Z0-9][a-zA-Z0-9._-]*\.[a-zA-Z]{2,5}";
  var regex  = "^" + proto + "?" + usr + "\@" + domain + "$";

	try {
 		rgx = new RegExp(regex);
 		ok = rgx.exec(email) ? true : false;
	}
	catch(e)
	{
		rgx = new RegExp("^[a-zA-Z0-9][a-zA-Z0-9_.-]*\@" + domain + "$");
 		ok = rgx.exec(email) ? true : false;
	}

	return ok;
}

function gal_window(file)
{
  window.open("gal_window.php?file="+file,"_blank","width=820,height=830,scrollbars=no,status=no,resizable=no,toolbar=no,location=no");
}

function linksbla() {
  if(document.getElementById("menu1").style.display=="none")
		document.getElementById("menu1").style.display="block";
	else
    document.getElementById("menu1").style.display="none";
}

function popup(col,size) {
if(size==1) {
  width  = 700;
  height = 500;
}
else {
	width  = 500;
	height = 500;
}
	window.open("fck.php?col="+col,"Text-Editor","width="+width+",height="+height+",location=no,menubar=no,resizeable=no,scrollbars=no,status=no,toolbar=no");
}

function show_window(col) {
	window.open("show_window.php?col="+col,"Infos","width=500,height=500,location=no,menubar=no,resizeable=no,scrollbars=no,status=no,toolbar=no");
}

