﻿function setFieldFocus(fieldID) {
    try {
    document.getElementById(fieldID).focus();
    } catch (e) {
        ;
    }
}

function openChatWindow() {
    window.open('/IRCChat', 'bowlStream_chat', 'width=720, height=540, status=yes, toolbar=no, menubar=no, location=no');
}

function openAskTheStudioWindow() {
    window.open('/AskTheStudio.aspx', 'bowlStream_ask_the_studio', 'width=450, height=250, status=yes, toolbar=no, menubar=no, location=no');
}

function Blind(element) {
    if (document.getElementById(element).style.display == 'none') {
        Effect.BlindDown(element);
    } else {
        Effect.BlindUp(element);
    }
}

function Blind(element, lat, lon) {
    if (document.getElementById(element).style.display == 'none') {
        Effect.BlindDown(element, lat, lon);
    } else {
        Effect.BlindUp(element);
    }
}

function Fade(element) {
    if (document.getElementById(element).style.display == 'none') {
        new Effect.Appear(element);
    } else {
        new Effect.Fade(element);
    }
}