// JavaScript Document
// gegen frame-hijacking
if (top.frames.length!=0) {
if (window.location.href.replace){
top.location.replace(self.location.href);
} else {
top.location.href=self.document.href;
}
}

function change_bg(bg_hex){
document.getElementById("flash_table").bgColor = "#"+bg_hex;
//document.getElementById("flash_table").style.backgroundcolor = "#"+bg_hex;
}

function pageflip_win_open(url,breite,hoehe){
//alert (url); // test
//titel = "ask - Partituren und Buecher";
titel ="ask";
geo = "\"width="+breite+",height="+hoehe;
params = ",scrollbars=no,locationbar=no,status=no,menubar=no,resizable=no\"";
winstring = "\""+url+"\",\""+titel+"\","+geo+params;
//alert ("window.open("+winstring+");"); // test
fenster = eval("window.open("+winstring+");");
}
