<!--
function popUpMap(url) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=620,height=360,left = 322,top = 183');");
}

function validateComment(){
    if(document.sendComment.comment_email.value == 'Email address' || 
       document.sendComment.comment_comment.value == 'Comment' ||
       document.sendComment.comment_name.value == 'Name' || 
       document.sendComment.comment_email.value == '' || 
       document.sendComment.comment_name.value == '' ||  
       document.sendComment.comment_comment.value == ''){
        alert('Please fill out all fields to post your comments');
        return false;
    }
    return true;
}
-->