﻿pic1 = new Image(1, 25);
pic1.src = "/images/hover.gif";

pic2 = new Image(205, 1);
pic2.src = "/images/subMenu_LVL2_On.jpg";

pic3 = new Image(205, 1);
pic3.src = "/images/subMenu_BG2_On.jpg";

pic4 = new Image(1, 25);
pic4.src = "/images/menu_BG.gif";

function popUp(URL) {
    popUpWithSize(URL, 800, 618)
}
function popUpYouTubeWithSize(secretArg, width, height) {
    var newURL = "http://www.ricssoftware.com/WebHelpVideo.aspx?secretArg=";
    newURL += secretArg;
    newURL += '&w=' + width + '&h=' + height;
    width += 13;
    height += 13;
    popUpWithSize(newURL, width, height);
}
function popUpWithSize(URL, width, height) {
    day = new Date();
    id = day.getTime();
    window.open(URL, id, 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + width + ',height=' + height + ',left = 50%,top = 50%');
}

function removeFocusOnAllLinks() {
    for (var i = 0; i < document.links.length; i++)
        document.links.onclick = blurLink;
}
function blurLink() {
    if (this.blur) this.blur();
}
window.onload = removeFocusOnAllLinks;
