panel main_menu_panel
{
bmap=back_ground;
pos_x = 0; pos_y = 0;
alpha=100;//20
layer = 10;
Flags= visible;
button = 200, 500, exitgame, exitgame, exitgameblue, eXit(),eXit(),eXit();
button = 200, 450, newgame, newgame, newgameblue,main_restart_game(),main_restart_game(),main_restart_game();
}
function main_restart_game()
{
if (event_type == EVENT_CLICK)
{
level_load("Bell.wmb");
main_menu_panel.visible = off;
}
}