function showmenu(elmnt)
{
document.all(elmnt).style.visibility="visible"
}

function hidemenu(elmnt)
{
document.all(elmnt).style.visibility="hidden"
}

function mOvr(src,clrOver,ignorecursor) {
	 if (ignorecursor == true) {
	 	src.style.cursor = 'default';
 	 } else {
	 	src.style.cursor = 'hand';
	 }
	 src.bgColor = clrOver; src.style.color = '#000000';}

function mOut(src,clrIn) {
	 src.style.cursor = 'default'; src.bgColor = clrIn; src.style.color='#9F9F9F'; }

function redirect(url)
{
window.location=url;
}

//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

var nw="";
function loadTosubwin_1(url){
    if( sbwin_closed(nw) ) {
        nw = window.open(url, 'win',"width=450,height=310");
    } else {
        nw.location.href=url;
    }
    nw.focus();
}

//子ウインドウ有無確認関数
function sbwin_closed(winVar) {
    var ua = navigator.userAgent;
    if( !winVar )
        if( ua.indexOf('MSIE 4')!=-1 && ua.indexOf('Win')!=-1 ) 
            return winVar.closed
        else return typeof winVar.document != 'object'
    else return true
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++