
function MM_openBrWindow(theURL,winName,features)
{
window.open(theURL,winName,features);
}

CSAct = new Object;
function CSOpenWindow(action) {
var wf = "";
wf = wf + "width=" + action[3];
wf = wf + ",height=" + action[4];
wf = wf + ",resizable=" + (action[5] ? "yes" : "no");
wf = wf + ",scrollbars=" + (action[6] ? "yes" : "no");
wf = wf + ",menubar=" + (action[7] ? "yes" : "no");
wf = wf + ",toolbar=" + (action[8] ? "yes" : "no");
wf = wf + ",directories=" + (action[9] ? "yes" : "no");
wf = wf + ",location=" + (action[10] ? "yes" : "no");
wf = wf + ",status=" + (action[11] ? "yes" : "no");
window.open(action[1],action[2],wf);
}
function OeffneBild(url)
{
window.open(url,'Bild','width=628,height=628');
}

function LadeBild(url)
{
window.open(url,'Bild','width=400,height=400');
}

function OeffneVideo(url)
{
window.open(url,'Bild','width=500,height=500');
}