function windowopen(url,name,width,height)
{
	if(url.indexOf('?') > 0) {
		tURL = url+'&REF=popup'
	}
	else {
		tURL = url+'?REF=popup';
	}
	var opener = window.open(tURL,name,"scrollbars=yes,locationbar=no,menubar=no,status=no,width="+width+",height="+height+",resizable=yes,dependent=yes").focus();
}

function DeleteImageQuestion(url, pvpDir)
{
 	if( confirm( "Wollen Sie dieses Bild wirklich löschen?" ) == true )
	{
		cms_windowopen(url,'imageedit',100,10, pvpDir)
	}
}
