//Promato-CMS - normales PopUp
function newWindow(url,width,height,resize,hightwithoutaddition) {
	if(hightwithoutaddition!='1' && hightwithoutaddition!='Yes') {
	height = parseInt(height) + 23;
	}
	if(resize==null || resize=='') {
	resize='yes';
	}
	
	if(typeof(WollPopUp)!="undefined"){	
	if (WollPopUp && !WollPopUp.closed && WollPopUp.closed!='undefined' && WollPopUp.closed!=null) {
		WollPopUp.close();
	}
	}
	WollPopUp=open(url,'WollPopUp','resizable='+resize+',scrollbars=no,status=no,width=' + width +',height=' + height);
	WollPopUp.focus();
}


//Promato-CMS - Bildergalerie
function simplePopUp(url,width,height,resize) {
	if(resize==null || resize=='') {
	resize='no';
	}
    WollImageGallery=open((url ),'WollImageGallery','resizable='+resize+',scrollbars=no,status=no,width=' + width +',height=' + height);
    WollImageGallery.focus();
}


// popupdeluxe by Patrick Horn, www.reinweiss.biz, 2006_05
g_jetzt=new Date();
g_UniqueWinName='Pop' + String(g_jetzt.getTime());

function popupdeluxe(url,b,h,zen,closeopenlast0_uselast_1_new2,x,y,res,men,too,sta,scr,loc,dir) {
	if(closeopenlast0_uselast_1_new2==2) {
	g_jetzt=new Date();
	g_UniqueWinName='Pop' + String(g_jetzt.getTime());
	}

	if(b==null || b==''){b=500}; 
	if(h==null || h==''){h=500}; 
	if(closeopenlast0_uselast_1_new2==null || closeopenlast0_uselast_1_new2==''){closeopenlast0_uselast_1_new2=0};	
	if(x==null || x==''){x=50};    
	if(y==null || y==''){y=50};    
	if(res==null || res==''){res=1}; 
	if(men==null || men==''){men=0}; 
	if(too==null || too==''){too=0}; 
	if(sta==null || sta==''){sta=0}; 
	if(scr==null || scr==''){scr=0}; 
	if(loc==null || loc==''){loc=0}; 
	if(dir==null || dir==''){dir=0}; 
	
	if(zen=="1") { 
		var ns6 = (!document.all && document.getElementById);
		var ie4to6 = (document.all);
		var ns4 = (document.layers);
		var sbreite,shoehe;
		
		if(ns6||ns4) {
			sbreite = innerWidth;
			shoehe = innerHeight;
		}
		else if(ie4to6) {
			sbreite = document.body.clientWidth;
			shoehe = document.body.clientHeight;
		}
		x = (sbreite-b)/2;
		y = (shoehe-h)/2;
	}
	
	var features = "width="+b+",height="+h+",menubar="+men+",toolbar="+too+ ",status="+sta+",scrollbars="+scr+",resizable="+res+",location="+loc+",directories="+dir+",left="+x+",top="+y+"screenX="+x+",screenY="+y
	
	if((closeopenlast0_uselast_1_new2==0) && (typeof(popdeluxe)!='undefined')) {	
		if (popdeluxe && !popdeluxe.closed && popdeluxe.closed!='undefined' && popdeluxe.closed!=null) {
			popdeluxe.close();
		}
	}	
	popdeluxe=open(url,g_UniqueWinName,features);
	popdeluxe.focus();
}