Getting URL of Resized Image

Due to increased security risks with on-the-fly resizing scripts, I would convert over to the_post_thumbnail() or get_the_post_thumbnail() functions. If your theme doesn’t have post-thumbnail support, add this to your functions.php file.

add_theme_support('post-thumbnails');

This will help your load times dramatically.