function CheckImage()
{
	elem = document.getElementById( 'image' )
	if ( elem.value.length <= 0 )
	{
		alert( 'Please select an image for the ECard.' );
		return false;
	}
	// Set image to the medium image
	elem.value = elem.value.replace( "-sml", "-med" );
	
	return true;
}
	
function SelectImage( image_link )
{
	// Remove old selection
	if ( window.selected_image ) 
		window.selected_image.className = '';
		
	// Store the selection
	elem = document.getElementById( 'image' ); 
	elem.value = image_link.childNodes[0].src;
	
	// Make this the selected image
	image_link.className = 'active'; 
	window.selected_image = image_link;
}

window.selected_image = null;