function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function SetNodeStyle(idParent, strMode) 
{
    if (!document.getElementById) return;
    var parent = document.getElementById(idParent);
    if (strMode == "over") {
        parent.style.color = "#16079A";
        parent.style.cursor = "pointer";
    } else if (strMode == "out") {
        parent.style.color = "#16079A";
        parent.style.cursor = "default";
    }
}
function Node_Click(idChild) 
{
    if (!document.getElementById) return;
    var child = document.getElementById(idChild);
    if (child.style.display == "none") {
        child.style.display = "block";
    } else {
        child.style.display = "none";
    }
}

function MailForm() {
	window.open('http://www.lineeye.co.jp/cgi-bin/mailform.html','','scrollbars=yes,status=yes,width=500,height=500');
}
