function zipCheck() { 
	newWindow = window.open('../customer/zip_check.php', 'myWindow', 'scrollbars=yes,width=318,height=338'); 
}

function modelingCheck() { 
	newWindow = window.open('../bureau/3d_check.php', 'myWindow', 'width=600,height=560'); 
}

function analysisCheck() { 
	newWindow = window.open('../bureau/analysis_check.php', 'myWindow', 'width=617,height=555,toolbar=no,menubar=no,status=no,scrollbars=yes,resizable=yes,left=0,top=0'); 
}

function moldCheck() { 
	newWindow = window.open('../bureau/mold_check.php', 'myWindow', 'width=767,height=555,toolbar=no,menubar=no,status=no,scrollbars=yes,resizable=yes,left=0,top=0'); 
}

function cadscanCheck() { 
	newWindow = window.open('../bureau/cad_scan_check.php', 'myWindow', 'width=600,height=500'); 
}

function inspectionCheck() { 
	newWindow = window.open('../bureau/inspection_check.php', 'myWindow', 'width=600,height=500'); 
}

function inspection2Check() { 
	newWindow = window.open('../bureau/2d_check.php', 'myWindow', 'width=617,height=555,toolbar=no,menubar=no,status=no,scrollbars=yes,resizable=yes,left=0,top=0'); 
}

function resultCheck() { 
	newWindow = window.open('../bureau/result_check.php', 'myWindow', 'width=617,height=555,toolbar=no,menubar=no,status=no,scrollbars=yes,resizable=yes,left=0,top=0'); 
}

<!-- µ¿¿µ»ó -->

function movie1Check() { 
	newWindow = window.open('../product/movie1.php', 'myWindow', 'width=400,height=409'); 
}
function movie2Check() { 
	newWindow = window.open('../product/movie2.php', 'myWindow', 'width=400,height=409'); 
}
function movie3Check() { 
	newWindow = window.open('../product/movie3.php', 'myWindow', 'width=400,height=409'); 
}
function movie4Check() { 
	newWindow = window.open('../product/movie4.php', 'myWindow', 'width=400,height=409'); 
}
function movie5Check() { 
	newWindow = window.open('../product/movie5.php', 'myWindow', 'width=400,height=409'); 
}
function movie6Check() { 
	newWindow = window.open('../product/movie6.php', 'myWindow', 'width=400,height=409'); 
}
function movie7Check() { 
	newWindow = window.open('../product/movie7.php', 'myWindow', 'width=400,height=409'); 
}
function movie8Check() { 
	newWindow = window.open('../product/movie8.php', 'myWindow', 'width=400,height=409'); 
}
function movie9Check() { 
	newWindow = window.open('../product/movie9.php', 'myWindow', 'width=400,height=409'); 
}
function movie10Check() { 
	newWindow = window.open('../product/movie10.php', 'myWindow', 'width=400,height=409'); 
}
function movie11Check() { 
	newWindow = window.open('../product/movie11.php', 'myWindow', 'width=400,height=409'); 
}
<!-- ÇÃ·¡½¬ -->

function flash(c,d,e) {
	var flash_tag = "";
	flash_tag = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
	flash_tag +='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ';
	flash_tag +='WIDTH="'+c+'" HEIGHT="'+d+'" >';
	flash_tag +='<param name="movie" value="'+e+'">';
	flash_tag +='<param name="quality" value="high">';
	flash_tag +='<param name="wmode" value="transparent">';
	flash_tag +='<param name="wmode" value="opaque">';
	flash_tag +='<embed src="'+e+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
	flash_tag +='type="application/x-shockwave-flash"  WIDTH="'+c+'" HEIGHT="'+d+'"></embed></object>'

	document.write(flash_tag);

}

<!--µ¿¿µ»ó  -->
function playIt()
    {
        flagCheck = 0;

        if( (navigator.userAgent.indexOf('IE') > -1)  &&  (navigator.platform == "Win32") )
        {
            Player.Play();
        }
        else
        {
            document.Player.Play();
        }

        var totalPosition = Player.Duration;
        min = totalPosition / 60;
        min = parseInt(min);

        if( 10 > min )  min="0" + min;          // ÇöÀç ½ÃÀÛ ½Ã°£ :

        sec = totalPosition % 60;
        sec = parseInt(sec);

        if( 10 > sec )  sec="0" + sec;

        totalPos = min + ":" + sec;

        setPositionBar();
        CurrentTime();

        document.all("playerState").innerHTML = "Playing";
    }


    // Àç»ý Á¤Áö
    function stopIt()
    {
        //flagBuffer = true;
        //clearInterval(playerSts);

        if( (navigator.userAgent.indexOf('IE') > -1)  &&  (navigator.platform == "Win32") )
        {
            Player.Stop();
            Player.currentPosition = 0;
        }
        else
        {   document.Player.Stop();
            document.Player.currentPosition = 0;
        }

        //CurrentTime();
        //document.all("playerState").innerHTML = "Stopped";
    }


    // Àç»ý ÀÏ½ÃÁ¤Áö
    function pauseIt()
    {
        if( (navigator.userAgent.indexOf('IE') > -1)  &&  (navigator.platform == "Win32") )
        {
            if( Player.PlayState == 2 )
                Player.Pause();
        }
        else
        {
            if( document.Player.GetPlayState() == 2 )
                document.Player.Pause();
        }
        document.all("playerState").innerHTML = "Paused";
    }
