/********************************************************************************
* Project:       phpCurema (http://phpcurema.neflexis.ch, info@neflexis.ch)     *
* Copyright:     2006 neflexis GmbH (www.neflexis.ch)                           *
* Author:        Emanuel Zuber (emanuel.zuber@noreality.ch                      *
********************************************************************************/

function del_entry(path){ // TODO Remove that function
	if (confirm('Wirklich löschen?'))
	{
		window.location.href=path;
	}else{
		return false;
	}
}

function ask(question, href) {
	if(confirm(question) == true) {
		window.location.href = href;
	}
}

function submit_filter_form() {
	document.filter.submit();
}


function standard_popup(url) {
    var options = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0";
    var width = 500;
    var height = 700;
    window.open(url, 'PopUp', options + ',width=' + width + ',height=' + height);
}
