// JavaScript Document

function page_enter()
{
window.location="index.htm"
}

function changeSource(strPage)
{
  document.getElementById("main").src = "subpage/p_" + strPage + ".htm";
  document.getElementById("title").src =  "subpage/t_" + strPage + ".htm";
}

function mouseOver(strPage,menuId)
{
  document.getElementById(menuId).src ="m_" + strPage + "_o.jpg";
}

function mouseOut(strPage,menuId)
{
  document.getElementById(menuId).src ="m_" + strPage + ".jpg";
}

function changeImgSource(imgname)
{
  document.getElementById("picframe").scr = "maci_" + imgname + ".jpg";
}

