function OpenWin(url, WindowName, height, width)
{
	var offset = 40;
	height += offset;
	width += offset;
	var WindowOptions = "height="+height+",width="+width+",hotkeys=no,location=no,menubar=no,resizable=yes,left=150,top=10,scrollbars=yes,status=yes,toolbar=no";
	var InfoWin = window.open(url, WindowName, WindowOptions);
	InfoWin.focus();
}