    /*** Initialize for goods page ***/

    function wResize(theEvent) {
        location.reload() ;
    }

    // 新しいウィンドウ
    function opWindow(file,tit,wid,hei) {
        opt = 'width='+ wid + ',height='+ hei ;
        //alert("opt") ;
        imgWindow = window.open(file,tit,opt) ;
    }

// 新しいウィンドウ
    function opWindow2(file,tit,wid,hei) {
        opt = 'width='+ wid + ',height='+ hei + ',scrollbars=yes';
        //alert("opt") ;
        imgWindow = window.open(file,tit,opt) ;
    }
	
	function pmenujump1() {
		var URL =
		document.pmenu1.menuitem1.options[document.pmenu1.menuitem1.selectedIndex].value;
		if (URL != "none") {
			window.location.href = URL;
		}
	}
	function pmenujump2() {
		var URL =
		document.pmenu2.menuitem2.options[document.pmenu2.menuitem2.selectedIndex].value;
		if (URL != "none") {
			window.location.href = URL;
		}
	}
	function pmenujump3() {
		var URL =
		document.pmenu3.menuitem3.options[document.pmenu3.menuitem3.selectedIndex].value;
		if (URL != "none") {
			window.location.href = URL;
		}
	}

    // ブラウザのチェック
    var bws_vr ; var bws_ns ; var bws_ie ;
    bws_vr = parseInt(navigator.appVersion);
    bws_ns = (document.layers && (bws_vr >= 4)); // Netscape Navigator 4.0 or later
    bws_ie = (document.all    && (bws_vr >= 4)); // Internet Explorer  4.0 or later

    // ウィンドウのリサイズ時にリロードを行う（NN v4.x）
    /*** NN ***/
    if (bws_ns) {

        window.captureEvents(Event.RESIZE) ;
        window.onresize = wResize ;
/*
        document.write('<STYLE TYPE ="text/css">') ;
        document.write('A{ text-decoration : none;}') ;
        document.write('</STYLE>') ;
*/
    }

    /*** IE ***/
    if (bws_ie) {
        document.write('<STYLE TYPE ="text/css">') ;
        document.write('A:HOVER { color: #ff0000 ;}') ;
        document.write('</STYLE>') ;
    }

