i will load two different pages in two different Frames. How do i do this?
I have testet it with a function who loads two pages in two frames, but i can't load the function in the menu-scipt. Then i becomes an error-message.
my Function is (the functions is above the menu-script):
Code: Select all
function start_mich()
{
parent.mitte.location = "mich.html";
parent.hilfe.location = "hilfe.html";
}
function start_urlaub()
{
parent.mitte.location = "urlaub.html";
parent.hilfe.location = "hinweis.html";
}
Code: Select all
addmenu(menu=["test",
,,140,1,"",style1,,"left",effect,,,,,,,,,,,,
,"mich","start_mich()",,,1
,"urlaub","start_urlaub()",,,1
])
BYE Snopsy[/code]