function toggleMe(a){
  	var mye=document.getElementById(a);
  	if(!mye)return true;
  	if(mye.style.display=="none"){
	    mye.style.display="block";
  	} else {
	    mye.style.display="none";
  	}
  	return true;
}

function PopUp(indirizzo,larghezza,altezza){
window.open(indirizzo,'w1','width='+larghezza+',height='+altezza+',resizable=1,status=0,scrollbars=1');
}

