<!--
function openwin(page, width, height)
{
	if(height>screen.height) height=screen.height-50;

	//alert("width: "+width+"; height: "+height+"; screen.height: "+screen.height);

	var win = window.open(page, "image", "width="+width+", height="+height+", toolbar=0, resizable=1, directories=0, menubar=0, status=0, scrollbars=0, copyhistory=0, left=0, top=0");
	win.opener = self;
	win.focus();
}

// -->

