/**
 * JavaScript.inc.php
 *
 * @author Matthias Plappert
 * @copyright phapswebsolutions 2006-2007
 * @package: system
 */

var oldId=false;

function ask(nachricht,url) {
  if(confirm(nachricht)) location.replace(url);
}

function setId(id) {
    oldId=id;
}

function showNavi(id) {
    if(oldId!=false) {
        document.getElementById(oldId).style.display='none';
    }
    
    document.getElementById(id).style.display='block';
    oldId=id;
}

function openPopup(name,url,left,top,width,height) {
    tmp=window.open(url,name,'left='+left+',top='+top+',width='+width+',height='+height);
    tmp.focus();
}