function disableSubmitForDevoSignUp(e)
{
     var key;

     if(window.event)
        key = window.event.keyCode;
     else
        key = e.which;

     if(key == 13) {
        dailyDevoSignup();
        return false;
     }
     else
        return true;
}
function dailyDevoSignup() {
    window.location = "email_devotional_signup.aspx?email=" + document.getElementById('dailyDevoEmail').value;
}
function textboxControlFocus(obj, val) {
    if (obj.value == val)
        obj.value = "";
    
}
function textboxControlBlur(obj, val) {
    if (obj.value == "")
        obj.value = val;    
}
function openPopup(url, windowName, tool, menu, loc, scroll, resize, status, left, top, width, height) {
    OpenWin = this.open(url, windowName, "toolbar=" + tool + ",menubar=" + menu + ",location=" + loc + ",scrollbars=" + scroll + ",resizable=" + resize + ",status=" + status + ",left=" + left + ",top=" + top + ",width=" + width + ",height=" + height);
}
function videoPopup(video, width, height) {
    openPopup("/site/video2.aspx?file=" + video + "&width=" + width + "&height=" + height, "videoplayer", "no", "no", "no", "no", "no", "no", 100, 100, width, height);
}
