// Printout function

function printout() {
	if (navigator.appVersion.substring(0,1) >= '4') window.print() ;  
	else
	alert("This function is not supported by your browser; please use the Print button to print this page");
}

// Popup window function

function newWindow(targetURL){
newsWindow=window.open(targetURL, "news", "status=no,width=700,height=600,scrollbars=no,resizable=yes,menubar=no");
}

// for the monades  cv
function openWin(URL){
aWindow=window.open(URL, "thewindow", "width=550,height=500,status=no,menu=no,scrollbars=yes,resizable=no");
}

	reset_on_click = false;
	function sw_status_doctypes(){
		for (i=0; i < this.document.form1.doctypes.length; i++){
			this.document.form1.doctypes[i].checked = false;
		}
	}

	function sw_status_topics(){
		for (i=0; i < this.document.form1.topics.length; i++){
			this.document.form1.topics[i].checked = false;
		}
	}

	function sw_all_topics(){
		this.document.form1.all_topics.checked = false;
	}

	function sw_all_types(){
		this.document.form1.all_types.checked = false;
	}

	function submit_form(){
		//var num = 0;
		
		//for (i = 0; i < this.document.form1.doctypes.length; i++){
		//	if (this.document.form1.doctypes[i].checked == true)
		//		num++;
		//}

		//if (num == 0){
		//	alert ('Δεν έχετε επιλέξει τους τύπους εγγράφων που σας ενδιαφέρουν.')
		//}else{
			this.document.form1.submit();
		//}
	}


