// JavaScript Document
function menuover(cell) {
    //cell.style.fontWeight = "bold";
    cell.style.borderTopWidth = "1px;"
    cell.style.borderTopStyle = "solid";
    cell.style.borderTopColor = "#efc054";
    cell.style.borderBottomWidth = "1px;"
    cell.style.borderBottomStyle = "solid";
    cell.style.borderBottomColor = "#efc054";
}

function menuout(cell) {
    //cell.style.fontWeight = "normal";
    cell.style.borderTopWidth = "0px;"
    cell.style.borderBottomWidth = "0px;"
}

function kimgover(name) {
    document.images[name].src = "images/" + name + "2.gif";
}

function kimgout(name) {
    document.images[name].src = "images/" + name + "1.gif";
}

var timer_id;
function scroll_iframe(frm,inc,dir) {
  if (timer_id) clearTimeout(timer_id);
  if (window.frames[frm]) {
    if (dir == "v") window.frames[frm].scrollBy(0, inc);
    else window.frames[frm].scrollBy(inc, 0);
    timer_id = setTimeout("scroll_iframe('" + frm + "'," + inc + ",'" + dir + "')", 20);
  }
}

function stopScroll() { if (timer_id) clearTimeout(timer_id); }

function opendoc(url) {
    window.open(url, "", "dependent=no, scrollbars=yes, titlebar=no, toolbar=no, status=no, height=600, width=800, left=" + (screen.width - 800) / 2 + ", top=" + (screen.height - 600) / 2);
}

function dlimgover(no, t) {
    document.images['img' + no].src = "images/p0" + no + "a_" + t + ".jpg";
}

function dlimgout(no, t) {
    document.images['img' + no].src = "images/p0" + no + "b_" + t + ".jpg";
}

