function tep_image_submit($image, $alt = '', $parameters = '') {    global $language;    $image_submit = '<input type="image" src="' . tep_output_string(DIR_WS_LANGUAGES . $language . '/images/buttons/' . $image) . '" border="0" alt="' . tep_output_string($alt) . '"';    if (tep_not_null($alt)) $image_submit .= ' title=" ' . tep_output_string($alt) . ' "';    if (tep_not_null($parameters)) $image_submit .= ' ' . $parameters;    $image_submit .= '>';    return $image_submit;   now.