var pop = null;

function popdown() {
	if (pop && !pop.closed) pop.close();
}

function popup(obj,w,h) {
	var url = (obj.getAttribute) ? obj.getAttribute('href') : obj.href;
	if (!url) return true;
	w = (w) ? w += 20 : 400;  // 150px*150px is the default size
	h = (h) ? h += 25 : 250;
	var args = 'width='+w+',height='+h+',resizable=0,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0';
	popdown();
	pop = window.open(url,'Vorgehensweise',args);
	return (pop) ? false : true;
}

window.onunload = popdown;
window.onfocus = popdown;

function fenster_auf (pfad) {
	var url = pfad;
	var name = "Vorgehensweise";
	var Fensteroptionen = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
	var Breite = 400;
	var Hoehe = 200;
	ok = window.open(url, name, Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
	if (ok) return false;
	else return true;
}

function modernus_dojo_popup(obj, message) {
	
	var dialog = new dijit.Dialog({
		title:   "ModernuS Info",
		style:   "width: 300px; height: 250px",
		content: message
	});

    dialog.show();
	
	return false;
}

function modernus_dojo_popup(obj, message) {
	
	var dialog = new dijit.Dialog({
		title:   "ModernuS Info",
		style:   "width: 300px; height: 250px",
		content: message
	});

    dialog.show();
	
	return false;
}