function winopen(url, caption, width, height)
{
	var sesamWindow;
    sesamWindow=window.open(url,caption,'width=' + width + ',height=' + height + ',toolbar=no,scrollbars=yes,location=no,left=0,top=0,status=no,resizable=yes,menubar=no');
    sesamWindow.focus();
}
