function Open(id, Section)
{
   var left = (screen.width - 560) / 2;
   var top = (screen.height - 780) / 2;
   var settings = " dependent=yes," +
				" hotkeys=no," +
				" menubar=no," +
				" locationbar=no," +
				" status=no," +
				" scrollbars=no, " +
				" resizable=no, " +
				" height=980," +
				" width=560," +
				" top=" + top + "," +
				" left=" + left;
   tmp = window.open("http://internal.tobit.com/tuningcenter/TuningCenterDetails.asp?ID=" + id + "&Section=" + Section, "TuningCenter", settings);
   tmp.focus();
}

function OpenStatus(id, ParentID, Section)
{
   var left = (screen.width - 400) / 2;
   var top = (screen.height - 200) / 2;
   var settings = " dependent=yes," +
				" hotkeys=no," +
				" menubar=no," +
				" locationbar=no," +
				" status=no," +
				" scrollbars=no, " +
				" resizable=no, " +
				" height=200," +
				" width=400," +
				" top=" + top + "," +
				" left=" + left;
   tmp = window.open("http://internal.tobit.com/tuningcenter/TuningCenterDetailsSave.asp?ID=" + id + "&ParentID=" + ParentID + "&Section=" + Section + "&command=SetStatusOK", "TuningCenter", settings);
   tmp.focus();
}
