<?php if ( !empty($post->post_password) && $_COOKIE['wp-postpass_' COOKIEHASH] != $post->post_password) : ?>
<p><?php _e('Enter your password to view comments.'); ?></p>
<?php return; endif; ?>

<h3 id="comments"><?php comments_number(__('No Comments'), __('1 Comment'), __('% Comments')); ?>
<?php 
if ( comments_open() ) : ?>
    <span class="meta-comment"><a href="#postcomment" title="<?php _e("Leave a comment"); ?>">&#187;</a></span>
<?php endif; ?>
</h3>

<?php if ( $comments ) : ?>
<ol id="commentlist">

<?php foreach ($comments as $comment) : $comment_ct++; ?>
    <li id="comment-<?php comment_ID(); ?>">
    <div class="comment-top">
    <?php if(!get_comment_author_url() || (!preg_match('%^http://%'get_comment_author_url()))) : ?>
    <?php echo $comment_ct '. 'comment_author(); ?>
    <?php else : ?>
    <a href="<?php comment_author_url(); ?>" title="<?php _e('Go to'); ?> <?php comment_author_url(); ?>" rel="nofollow"><?php echo $comment_ct.'. '.get_comment_author(); ?></a>
    <?php endif; ?>
    </div>
    <?php comment_text() ?>
    <p class="commenter"><span class="meta-comment"><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> :: <?php comment_date(); ?> @ <a href="#comment-<?php comment_ID(); ?>" title="<?php _e('Permalink to comment '); ?>"><?php comment_time(); ?></a> <?php edit_comment_link(__("Edit comment"), ' ::'); ?></span></p>
    </li>

<?php endforeach; ?>

</ol>

<?php endif; ?>

<?php if ( comments_open() ) : ?>
<p id="postcomment">&#160;</p>

<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p><?php _e('You must be'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>"><?php _e('logged in'); ?></a> <?php _e('to post a comment'); ?>.</p>
<?php else : ?>

<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

<?php if ( $user_ID ) : ?>

<p><?php _e('Logged in as'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account'); ?>">Logout &#187;</a></p>

<?php else : ?>

<p><input type="text" name="author" id="author" value="<?php echo $comment_author?>" size="22" tabindex="1" />
<label for="author"><sup><?php _e('name'); ?> (<?php if ($req_e('required'); ?>)</sup></label></p>

<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email?>" size="22" tabindex="2" />
<label for="email"><sup><?php _e('email'); ?> (<?php if ($req_e('required'); ?>/<?php _e('not published'); ?>)</sup></label></p>

<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url?>" size="22" tabindex="3" />
<label for="url"><sup><?php _e('web site'); ?></sup></label></p>

<?php endif; ?>

<!--<p><small><strong>XHTML:</strong> <?php _e('You can use these tags'); ?><?php echo allowed_tags(); ?></small></p>-->

<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>

<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id?>" />
</p>
<?php do_action('comment_form'$post->ID); ?>

</form>

<?php endif; // If registration required and not logged in ?>

<?php else : // Comments are closed ?>
<p><?php _e('Sorry, the comment form is closed at this time.'); ?></p>
<?php endif; ?>