document.write('<iframe id="calendarFrame" name="calendarFrame" marginheight=0 marginwidth=0 noresize frameborder=0 scrolling=no width=158 height=190 style="display:none;position:absolute;z-index:100"></iframe>');
var mkecal_campoPerData, calFrame;
var mkecal_submitFormThen = false;
var mkecal_bloccaHideOnClick = false;
function showCal(campo, sottomettere) {
	calFrame = document.getElementById("calendarFrame");
	mkecal_campoPerData = campo;
	var coords = getPageCoords(campo);
	calFrame.style.left = coords.x + "px";
	calFrame.style.top = (coords.y + parseInt(campo.clientHeight, 10)) + "px";
	mkecal_submitFormThen = sottomettere;
	calendarFrame.location.href = "mkecal/mkecal_051.htm?x=" + escape(Date());;
	calFrame.style.display = "block";
}

function freeField(campo, sottomettere) {
	campo.value = "";
	if(sottomettere)
		campo.form.submit();
}

function nascondiCal() {
	if(mkecal_bloccaHideOnClick) {
		calFrame = document.getElementById("calendarFrame");
		calFrame.style.display = "none";
	}
}