function apriImg(file,w,h) {
	var arg, tit, larg, alt;
	arg = "images.php?src=" + file;
	tit = "Gallery";
	larg = w+10;
	alt = h+10;
	popup_resize(arg,tit,larg,alt)  
}

function apriAudio(file,w,h) {
	var arg, tit, larg, alt;
	arg = "audio.php?src=" + file;
	tit = "Audio";
	larg = w;
	alt = h;
	popup(arg,tit,larg,alt)  
}

function apriVideo(file,w,h) {
	var arg, tit, larg, alt;
	arg = "movies.php?src="+file+"&w="+w+"&h="+h;
	tit = "Video";
	larg = w+20;
	alt = h+20;
	popup(arg,tit,larg,alt)  
}
function popup_scroll(arg,tit,larg,alt) {
window.open(arg,tit,'scrollbars=yes,resizable=no,width='+larg+',height='+alt+',status=no,location=no,toolbar=no,leftmargin=0,topmargin=0');
}
function popup_resize(arg,tit,larg,alt) {
window.open(arg,tit,'scrollbars=yes,resizable=yes,width='+larg+',height='+alt+',status=no,location=no,toolbar=no,leftmargin=0,topmargin=0');
}
function popup(arg,tit,larg,alt) {
window.open(arg,tit,'scrollbar=no,resizable=no,width='+larg+',height='+alt+',status=no,location=no,toolbar=no,leftmargin=0,topmargin=0');
}

function chiudi(){
		window.close();
}

function scriviMessaggio(id) {
	popup_scroll('formStralog.php?id='+id,'stralog',340,480);
}

function doshow(srcID) {
	var targetElement;
	targetElement = document.all(srcID);
	targetElement.style.display = "";
}

function dohide(srcID) {
	var targetElement;
	targetElement = document.all(srcID);
	targetElement.style.display = "none";
}
