function OpenMyWindow (Adresse) {
      MyWindow = window.open(Adresse, "_blank", "width=300,height=480,left=200,top=200");
      MyWindow.focus();
    }
	
function OpenMyWindowLarge (Adresse) {
      MyWindow = window.open(Adresse, "_blank", "width=500,height=500,left=200,top=200,location=no,menubar=no,status=no,toolbar=no");
      MyWindow.focus();
    }


