if (top.location == self.location){
top.location.href="http://www.roessl.at/";
}

function reloadMovie(mainvar,anim,subvar) {
if (parent.menu.document.getElementById("menu")) {
mymov=parent.menu.document.getElementById("menu");
if (movieIsLoaded(mymov)) {
		targ="../swf/menu/buchen.swf";
    mymov.GotoFrame("2");
    mymov.SetVariable( "mainvar", mainvar);
    mymov.SetVariable( "anima", anim);
    mymov.SetVariable( "subvar", subvar);
		mymov.GotoFrame("1");
}


}
}
function movieIsLoaded (theMovie) {
  if (typeof(theMovie) != "undefined") {
  try {    return theMovie.PercentLoaded() == 100;}
catch (e) {return false;}
  } else {
    return false;
  }
}