﻿function openPic(picid, width, height) {
    width += 100;
    if (width < 720)
        width = 720;
    height += 160;
    temp = window.open("BildGross.axd?picid=" + picid, "bigWin1", "WIDTH=" + width + ",HEIGHT=" + height);
}
function openPicAlbum(picid, width, height) {
    width += 100;
    if (width < 720)
        width = 720;
    height += 160;
    temp = window.open("BildGross.axd?album=true&picid=" + picid, "bigWin2", "WIDTH=" + width + ",HEIGHT=" + height);
}
function openPicBieteSuche(picid, width, height) {
    width += 100;
    if (width < 720)
        width = 720;
    height += 160;
    temp = window.open("BildGross.axd?bietesuchebildid=" + picid, "bigWin1", "WIDTH=" + width + ",HEIGHT=" + height);
}
function openScrollAlbum(albumid, picid, width, height) {
    width += 100;
    if (width < 720)
        width = 720;
    height += 160;
    temp = window.open("BildGross.axd?album=true&scrollalbum=true&albumid=" + albumid + "&picid=" + picid, "bigWin3", "WIDTH=" + width + ",HEIGHT=" + height);
}
function opensubmenu(id) {
    //var menu = document.getElementById("submenu" + id);
    //menu.style.visibility = "hidden";
  //  var thisObj = eval("document.getElementByID('submenu" + id + "')style")
    //thisObj.visibility = "hidden";
    if (document.getElementById("submenu" + id).style.visibility == "visible") {
        document.getElementById("submenu" + id).style.visibility = "hidden";
        document.getElementById("submenu" + id).style.height = "0px";
    } else {
    document.getElementById("submenu" + id).style.visibility = "visible";
    document.getElementById("submenu" + id).style.height = "auto";
    }
}
function openMusic() {
        width = 720;
        height = 375;
    temp = window.open("/musicplayer/PlayerPopup.aspx", "rkkMusicPlayer", "WIDTH=" + width + ",HEIGHT=" + height);
}
