function viewcalendar(item,lang) {
	switch(lang){
	case "GR":lang="GR";break;
	case "EN":;
	default:lang="EN";break;
	}
	if (item==1){
		kalendarik = window.open("/JS/php_calendar/calendar.php?Sel=1\&lang="+lang, "kalendarik", 
			"location=0, menubar=0, scrollbars=0, status=0, titlebar=0, toolbar=0, directories=0, " +
			"resizable=1, width=200, height=240, top=50, left=250");
	}
	if (item==0){	
		kalendarik = window.open("/JS/php_calendar/calendar.php?Sel=0\&lang="+lang, "kalendarik", 
			"location=0, menubar=0, scrollbars=0, status=0, titlebar=0, toolbar=0, directories=0, " +
			"resizable=1, width=200, height=240, top=50, left=250");
	}
	kalendarik.resizeTo(210, 290);
	kalendarik.moveTo(500, 200);
	foo="/JS/php_calendar/calendar.php?Sel=0\&"+lang;
}

function insertdate(d,Sel) {
	window.close();
	if(Sel==0){
		window.opener.document.getElementById("DateOut").value = d;
	}
	if(Sel==1){
		window.opener.document.getElementById("DateIn").value = d;
	}
}

