<!--
function cpop(URL,winName,winWidth,winHeight,features){
	var win=null;
	var pageX=0,pageY=0,left=0,top=0;
	pageX=screen.width;
	pageY=screen.height;
    fensterptr=null;
	if(fensterptr && fensterptr.closed!=1)
		fensterptr.close();
	if(features!=""){
		fstChar=features.charAt(0);
		if(fstChar!=",") features=","+features;
	}
	left=((parseInt(pageX))/2)-((parseInt(winWidth))/2);
	top=((parseInt(pageY))/2)-((parseInt(winHeight))/2);
	win=window.open(
		URL,
		winName,
		"width="+String(winWidth)+
		",height="+String(winHeight)+
		",left="+String(left)+
		",top="+String(top)+
		features
	);
	win.focus();
}
//-->