/**
 * Quattro Plant Website
 * Copyright © 2010 Maarten Hogenboom, Venema Advies
 * Pagina js/javascript.js
 */

function selectLanguage(language, url) {
	submitForm(language, url);
}

function submitForm(language, url) {
	document.form.language.value = language;
	document.form.url.value = url;
	try {
		document.form.onsubmit();
	}
	catch(e) {}
	document.form.submit();
}

function confirmSubmit(confirmMessage) {
	var agree = confirm(confirmMessage);
	if (agree) {
		return true;
	} else {
		return false;
	}
}

