How would I adjust the following code to only show the image tag when there is a variable present in the "imageembed" field?
<?php $imageid = get_post_meta($post->ID, 'imageembed', true); ?>
<div class="newsimage"><img src="<?php echo wp_get_attachment_url( $imageid ); ?>" width="640" /></div>