var	l = (screen.width) ? (screen.width-500)/2 : 0;
var	t = (screen.height) ? (screen.height-500)/2 : 0;
var	lg = (screen.width) ? (screen.width-780)/2 : 0;
var	tg = (screen.height) ? (screen.height-585)/2 : 0;
var contatti_prop = "width=600px, height=500px, top=" + t + ", left=" + l + ", resizable=0, scrollbars=1, status=0, menubar=0, toolbar=0";
var gallery_prop = "width=780px, height=585px, top=" + tg + ", left=" + lg + ", resizable=0, scrollbars=0, status=0, menubar=0, toolbar=0";
var vademecum_prop = "width=500px, height=500px, top=" + t + ", left=" + l + ", resizable=0, scrollbars=1, status=0, menubar=0, toolbar=0";


function contatti() {
	window.open('contatti.htm', null, contatti_prop);
}

function gallery(file) {
	window.open(file, null, gallery_prop);
}

function vademecum() {
	window.open('vademecum.htm', null, contatti_prop);
}


function elimina(id){
	if(confirm('Si è sicuri di voler eliminare questa notizia?')) self.location='news.asp?action=del&id=' + id;
}

function conferma(){
	if(document.newsForm.data.value == '' || document.newsForm.titolo.value == '' || document.newsForm.testo.value == '') {
		alert('Si prega di compilare tutti i campi del form!');
	} else {
		if(confirm('Continuare con l\'operazione?')) document.newsForm.submit();
	}
}

function logout(){
	if(confirm('Si è sicuri di voler chiudere la sessione?')) self.location='news.asp?action=logout';
}