function windows(url, w, h) {
    if (!w) w=500;
    if (!h) h=570;
	
	opn = window.open(url, "", 'width='+w+',height='+h+',status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes');
	opn.focus();
}


function checkmail(txt){
	if (txt == "") {
		return(false);
	}
	if (txt.indexOf(".") == -1) {
		return(false)
	}
	dog = txt.indexOf("@");
	if (dog == -1) {
		return(false)
	}
	if ((dog < 1) || (dog > txt.length - 5)) {
		return(false)
	}
	if ((txt.charAt(dog - 1) == '.') || (txt.charAt(dog + 1) == '.')) {
		return(false)
	}
	return(true);
}
