@PirateEric It does look like I am going to need to find that information for my custom page although it is not vital at this point in my project.
On another note I am using the following code on the NewItem.aspx page and it is partially working. It fills in my value for my Title but I get Undefined values for both variables. Any ideas anybody?
function PreSaveAction() { var txtVendor = $("input[id*=ff4_]").val(); var txtScope = $("input[id*=ff5_]").val(); $("input[title=Title]").val(txtVendor + ' - ' + txtScope); return true; };