function openDocument(xurl, b, h) {
	var wx = screen.width-200;
	var wy = screen.height-200;
	
	if (wx >= 800) wx = 800;
	if (wy >= 600) wy = 600;

	if (b < 1) b = wx;
	if (h < 1) h = wy;

	posx = 50;
	posy = 50;
	var wi = window.open(xurl, "data", "width="+b+", height="+h+", scrollbars=yes, resizable=yes, top="+posy+", left="+posx);
	wi.focus();
}

function openExpose(xurl, b, h) {
	var wx = screen.width-200;
	var wy = screen.height-200;
	
	if (wx >= 800) wx = 800;
	if (wy >= 600) wy = 600;

	if (b < 1) b = wx;
	if (h < 1) h = wy;

	posx = 50;
	posy = 50;
	var wi = window.open(xurl, "data", "width="+b+", height="+h+", scrollbars=yes, menubar=yes, toolbar=yes, resizable=yes, top="+posy+", left="+posx);
	wi.focus();
}

function imageViewerHtml(immoID) {
	var w = window.open("/galerie/?"+immoID,"images","width=980,height=680,scrollbars=yes,resizable=yes");
	w.focus();
}

