function initContact() {
	var cDiv = document.getElementById('contactform');
	if(cDiv!=null) {
		$.get(csoPath + '/contact.php5?language=' + language[1], {}, function(data){
			$("#contactform").html(data);
		});
		
	}
}

function sendContactForm() {
	var str = $("form[name='CONTACTFORM']").serialize();

	$.post(csoPath + '/contact.php5?language=' + language[1], str, function(data){
			$("#contactform").html(data);
	});
	
}
