var statMid = 0;
function play(){
	if(statMid == 1){
		statMid = 0;
		document.getElementById("my_sound").stop();
	}
	else{
		statMid = 1;
		document.getElementById("my_sound").play();
	}
}
function apri(tipo,id,tp){
	if(tipo=="logon"){
		window.open("logon.asp?idArticolo="+id+"&tp="+tp,"logon","width=200px,height=100px,left=170px,top=200px");
	}
	else if(tipo=="edit"){
		window.open("edit.asp?idArticolo="+id+"&tp="+tp,"logon","width=604px,height=498px,left=150px,top=80px");
	}
	else if(tipo=="del"){
		if(conf()==true){
			window.open("del.asp?idArticolo="+id+"&tp="+tp,"logon","width=200px,height=100px,left=170px,top=200px");
		}
	}
}
