function confirm_delete(url)
{ 
	if (confirm('Wirklich löschen?')) { location.href = url; }
}

function pop_up (url) 
{
	win1 = window.open(url, "", "width=700,height=600,left=100,top=200,scrollbars=1,resizable=1");
	win1.focus();
}

function pop_up2 (url, width, height) 
{
	win1 = window.open(url, "", "width="+width+",height="+height+",left=100,top=200,scrollbars=0,resizable=1");
	win1.focus();
}

function close_pic_dialog(type)
{
	if(type==1)
	{
		top.opener.window.parent.save_pic();
	}
	window.close();
}


function checkTime(){
	var openat1 = '1100';
	var closeat1 = '1400';
	var openat2 = '1700';
	var closeat2 = '2200';
	var time = document.getElementById('time').value;
	time = time.replace(':', "");
	if(time < openat1 || (time > closeat1 && time < openat2) || (time > closeat2)){
		alert("Bitte beachten Sie unsere "+unescape("%D6")+"ffnungszeiten\nt"+unescape("%E4")+"glich 11:00 - 14:00 Uhr und 17:00 - 22:00 Uhr");
		document.getElementById('time').value = "";
	}
		
}
