function openContentPopup(a,b,h) {
	if(h==null) {
		h=b;
	}
	if(h!=null && h.indexOf("width") == -1) {
		h=null;
	}
	if( h=="" || h==null) {
		h="width=400,height=550,scrollbars=yes,resizable=yes";
	}
	var c,j,d=null,g=null;
	temp=h.split(",");
	
	for(var e=0; e<temp.length; e++) {
		values=temp[e].split("=");
		if(values[0] == "width") {
			c=parseInt(values[1]);
		}
		if(values[0] == "height"){
			j=parseInt(values[1]);
		}
		if(values[0] == "left") {
			d=parseInt(values[1]);
		}
		if(values[0]=="top") { 
			g=parseInt(values[1]);
		}
	}
	if(d==null) {
		d=Math.round((screen.width-c)/2);
	}
	if(g==null) {
		g=Math.round((screen.height-j)/3);
	}
	if(d!=null) {
		h+= ",screenX=" + d + ",left=" + d;
	}
	if(g!=null) {
		h+= ",screenY=" + g + ",top=" + g
	}
	var f=window.open(a,"",h);
	if(f!=null){
		f.window.focus();
	}
}
//fake DW.Autocompleter
//var DW = function(){};
//DW.Autocompleter = function(){};
//var SearchUtils = function(){};
//SearchUtils.doAutoCompletionSearch = function(){};
