CompanyBoxDedupe missing needed buttons

Help! I have created an asp page to create a very stripped down version of a company record. The record is intended to represent a chain store or chain restaurant. Therefore, the only information that is required for setup is the chain store name (comp_name) and type (comp_type). Type will be Chain.

Dedupe is setup on the company record. Therefore, when I attempt to enter the chain, a dedupe screen appears. However, it is not the "normal" dedupe screen. The normal dedupe screen has the following buttons on the screen.

Enter Company Details, Cancel and Help

However, the dedupe screen that appears is as follows:

Instead of the Enter Company Details button, there is a Save button. If you hit the save button, the value that you place in the Name field is added to the database and an error message displays as follows.... The record you requested has been deleted or you may not have security permissions to view it.

However, you can go to find and you will find the company in the database.

I would like to remove the Save button from the screen and display the Enter Company Details button. I have added some code to the content area of the CompanyBoxDedupe screen to see if I could hide the save button. However, the button continues to display. This is the script I have entered.

<script>
crm.ready(function () {
var contextInfo = crm.getArg("Key0",crm.url());
//Dedupe (CompanySearchKey)
if (contextInfo == "19")
{
crm.hideButton("Save");
}
})
</script>

I am guessing that perhaps something is off in the above script. If someone could push me in the right direction on how I might get the correct buttons on the screen (ie remove the save button and add the Enter Company Details button), I would greatly appreciate it.

Thank you! Michele