function Validate()
{
	file = document.galleryForm.strImage.value;
    if (document.galleryForm.strImage.value != "") {
        return true;
    } else {
	    alert('You must add a picture.');
	    return false;
    }
}