<!--
function ValidateQuoteForm(thisform) {
var okEmail = thisform.txtEmailAddress.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
if (okEmail){
    ok = true;
} 
 else {
    alert('Please enter a valid e-mail address.');
    thisform.txtEmailAddress.focus();
    return (false);
} 
if (thisform.ParentAlbum.value != "0"){
    if (thisform.NoParentAlbums.value < 1){
        alert('You have selected a parent album but not specified number');
        thisform.ParentAlbum.focus();
        return (false);
    }
}
ok = true;
return true;
} 