function check_mail_form() {
	form = document.contact_us;
	if(form.name.value == "") {
		alert('You have to insert name!');
		form.name.focus();
		return false;
	}
	if(form.tel.value == "") {
		alert('You have to insert phone number!');
		form.tel.focus();
		return false;
	}
	if(form.email.value == "") {
		alert('You have to insert email!');
		form.email.focus();
		return false;
	}
	if(form.message.value == "") {
		alert('You have to insert questions/commnets!');
		form.message.focus();
		return false;
	}
}

function popUp(URL, width, height) {
	day = new Date();
	id = day.getTime();
	if(width > 800) {
		width = 800;
	}
	if(height > 600) {
		height = 600;
	}
	eval("page" + id + " = window.open('includes/show_image.php?image=../images/stored/"+URL+"', '" + id + "', 'toolbar=0, scrollbars=yes, location=0, statusbar=0, menubar=0, resizable=0, width=" + (width+40) + ", height=" + (height+40) + "');");
}
