function isValidEmail(str) {
	return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}
function changeImg(id,src) { document.getElementById(id).src = src; }
function url_open(url) {
	location.href = url;
}

