I have enabled the purchase without account in the admin/catalog/accounts section but it does not allow option for guest checkout. Also, when I click on My accounts or Checkout I get the following error:

Parse error: syntax error, unexpected T_STRING in /home/tsv/public_html/oscmax/catalog/login.php on line 84

Below is line 80-89 from my login.php file.


print ("</td>\n</tr>\n</table>\n</form>\n</td>\n</tr>\n</table>\n</body>\n</html>\n");
exit;
}
// EOF: MOD - Separate Pricing Per Customer: choice for logging in under any customer_group_id
$check_country_query = tep_db_query("select entry_country_id, entry_zone_id from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . (int)$check_customer['customers_id'] . "' and address_book_id = '" . (int)$check_customer['customers_default_address_id'] . "'");
$check_country = tep_db_fetch_array($check_country_query);

$customer_id = $check_customer['customers_id'];
$customer_default_address_id = $check_customer['customers_default_address_id'];
$customer_first_name = $check_customer['customers_firstname'];
/


Please help. Thanks