견적서

인터넷관련 2008. 2. 12. 11:13
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>::::::: GUIDEMAP.net :::: 예산짜기::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</title>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
<STYLE>
<!--
A:link {text-decoration:none; color:#606060;}
A:visited {text-decoration:none; color:#606060;}
A:hover {  text-decoration:underline; color:orange;}
p,br,body,td {color:black; font-size:9pt; line-height:150%;}
BODY
{scrollbar-face-color: #e5e5e5; scrollbar-shadow-color: white;
scrollbar-highlight-color: white; scrollbar-3dlight-color: #e5e5e5;
scrollbar-darkshadow-color: #666666; scrollbar-track-color: white;
scrollbar-arrow-color: #999999 overflow:scroll;overflow-x:hidden}

.popper    {position : absolute;visibility : hidden;}
-->
</STYLE>
<link rel="stylesheet" type="text/css" href="http://www.guidemap.net/estimate/include/cssWindow.css">
<script language="JavaScript">
<!--
function fncFlush(intNum){
        var strThisLayer

        for(i=0; i < 10; i++){
                strThisLayer = "lyrPassTerm" + i

                if(document.all){document.all[strThisLayer].style.visibility = "hidden"}
                if(document.layers){document.layers[strThisLayer].visibility = "hidden"}
        }
}

function fncViewLayer(intNum){

        var strThisLayer = "lyrPassTerm" + intNum

        if(document.all){document.all[strThisLayer].style.visibility = "visible";}
        if (document.layers){document.layers[strThisLayer].visibility = "visible";}
}

function fncTerm(){
        var form = document.EstimateForm
        var intSubPrice = 0
        var intPrice = 0
        var intExpenseKeep,intNumber
       
       
        if(isNaN(form.frmTerm.value) || (form.frmTerm.value.length < 1) || (form.frmTerm.value < 1)){
                form.frmExpenseKeep.value = ""
                form.frmExpenseKeep.disabled = true

                for(var i=0; i<form.frmExpense.length;i++){
                        form.frmExpense[i].checked = false
                        form.frmExpense[i].disabled = true
                }
                form.frmPrice[11].value = 0
        }
        else{
                form.frmExpenseKeep.disabled = false

                if(isNaN(form.frmExpenseKeep.value) || (form.frmExpenseKeep.value.length < 1)){
                        intExpenseKeep = 0
                        form.frmExpenseKeep.value = ""
                }
                else{intExpenseKeep = parseInt(form.frmExpenseKeep.value)}

                for(var i=0; i<form.frmExpense.length;i++){
                        form.frmExpense[i].disabled = false
                        if(form.frmExpense[i].checked){
                                intPrice = parseInt(form.frmExpensePrice[i].value)
                        }
                }

                intNumber = parseInt(form.frmTerm.value)

                intSubPrice = intExpenseKeep + (intNumber * intPrice)
                form.frmPrice[11].value = fncMoney(intSubPrice)
        }
}


function fncAirline(){
        var form = document.EstimateForm

        if(form.frmAir.selectedIndex == 0){form.frmPrice[0].value = 0}
        else{
                var txtAirline = form.frmAir.options[form.frmAir.selectedIndex].value
                var strAirline = txtAirline.split("<CS>")
                form.frmPrice[0].value = fncMoney(strAirline[0])
        }
}

function fncTax(){
        var form = document.EstimateForm

        if(form.frmTax.selectedIndex == 0){form.frmPrice[1].value = 0}
        else{
                var txtTax = form.frmTax.options[form.frmTax.selectedIndex].value
                var strTax = txtTax.split("<CS>")
                form.frmPrice[1].value = fncMoney(strTax[0])
        }
}

function fncDover(){
        var form = document.EstimateForm

        if(form.frmDover.selectedIndex == 0){form.frmPrice[2].value = 0}
        else{
                var txtDover = form.frmDover.options[form.frmDover.selectedIndex].value
                var strDover = txtDover.split("<CS>")
                form.frmPrice[2].value = fncMoney(strDover[0])
        }
}

function fncEurail(intFlag){
        var form = document.EstimateForm
        var curRate = 1200
        if(form.frmEurailTerm[intFlag].selectedIndex == 0){form.frmPrice[3].value = 0}
        else{
                var txtEurail = form.frmEurailTerm[intFlag].options[form.frmEurailTerm[intFlag].selectedIndex].value
                var strEurail = txtEurail.split("<CS>")
                var curCharge = curRate * parseInt(strEurail[0])
                form.frmPrice[3].value = fncMoney(curCharge)
        }
}

function fncETC(){
        var form = document.EstimateForm
        var intSubPrice = 0
        var intPriceLicence = parseInt(form.frmLicence.options[form.frmLicence.selectedIndex].value)
        var intPriceYOUTH = parseInt(form.frmYOUTH.options[form.frmYOUTH.selectedIndex].value)
        var intPricePassport = parseInt(form.frmPassport.options[form.frmPassport.selectedIndex].value)
        var intPriceINS = parseInt(form.frmINS.options[form.frmINS.selectedIndex].value)

        intSubPrice = intPriceLicence + intPriceYOUTH + intPricePassport + intPriceINS

        form.frmPrice[4].value = fncMoney(intSubPrice)
}


function fncTrain(){
        var form = document.EstimateForm
        var intSubPrice = 0
        var intNumber = 0
        var intPrice

        for(var i=0; i <form.frmNight.length; i++){
                if(isNaN(form.frmNight[i].value) || (form.frmNight[i].value < 0)){
                        alert("야간 열차 이용 횟수가 잘못 기입되었습니다.")
                        form.frmNight[i].focus()
                }
                else{
                        if(form.frmNight[i].value.length < 1){intNumber = 0}
                        else{intNumber = parseInt(form.frmNight[i].value)}

                        intPrice = parseInt(form.frmNightPrice[i].value)
                        intSubPrice = intSubPrice + (intNumber * intPrice)
                }       
        }
        form.frmPrice[5].value = fncMoney(intSubPrice)
}

function fncHotel(){
        var form = document.EstimateForm
        var intSubPrice = 0
        var intNumber = 0
        var intPrice

        for(var i=0; i <form.frmHotel.length; i++){
                if(isNaN(form.frmHotel[i].value) || (form.frmHotel[i].value < 0)){
                        alert("호텔이용 횟수가 잘못 기입되었습니다.")
                        form.frmHotel[i].focus()
                }
                else{
                        if(form.frmHotel[i].value.length < 1){intNumber = 0}
                        else{intNumber = parseInt(form.frmHotel[i].value)}

                        intPrice = parseInt(form.frmHotelPrice[i].value)
                        intSubPrice = intSubPrice + (intNumber * intPrice)
                }       
        }
        form.frmPrice[6].value = fncMoney(intSubPrice)
}


function fncEat(){
        var form = document.EstimateForm
        var intSubPrice = 0
        var intPrice = 0

        var intEatKeep,intNumber
       
       
        if(isNaN(form.frmTerm.value) || (form.frmTerm.value.length < 1) || (form.frmTerm.value < 1)){
                form.frmEatKeep.value = ""
                form.frmEatKeep.disabled = true

                for(var i=0; i<form.frmEat.length;i++){
                        form.frmEat[i].checked = false
                        form.frmEat[i].disabled = true
                }
                form.frmPrice[7].value = 0
        }
        else{
                form.frmEatKeep.disabled = false

                if(isNaN(form.frmEatKeep.value) || (form.frmEatKeep.value.length < 1)){
                        intEatKeep = 0
                        form.frmEatKeep.value = ""
                }
                else{intEatKeep = parseInt(form.frmEatKeep.value)}

                for(var i=0; i<form.frmEat.length;i++){
                        form.frmEat[i].disabled = false
                        if(form.frmEat[i].checked){
                                intPrice = parseInt(form.frmEatPrice[i].value)
                        }
                }

                intNumber = parseInt(form.frmTerm.value)

                intSubPrice = intEatKeep + (intNumber * intPrice)
                form.frmPrice[7].value = fncMoney(intSubPrice)
        }
}

function fncTrance(){
        var form = document.EstimateForm
        var intSubPrice = 0
        var intNumber = 0
        var intPrice

        if(isNaN(form.frmTrance.value) || (form.frmTrance.value.length < 1)){
          intTrance = 0
          form.frmTrance.value = "0"
         }
    else{intTrance = parseInt(form.frmTrance.value)}
       
        intPrice = parseInt(form.frmTrancePrice.value)
        intNumber = parseInt(form.frmTrance.value)
        intSubPrice = intNumber * intPrice

        form.frmPrice[8].value = fncMoney(intSubPrice)
}


function fncCulture(){
        var form = document.EstimateForm
        var intSubPrice = 0
        var intNumber = 0
        var intPrice

        if(isNaN(form.frmCulture.value) || (form.frmCulture.value.length < 1)){
          intCulture = 0
          form.frmCulture.value = "0"
         }
    else{intCulture = parseInt(form.frmCulture.value)}
       
        intPrice = parseInt(form.frmCulturePrice.value)
        intNumber = parseInt(form.frmCulture.value)
        intSubPrice = intNumber * intPrice

        form.frmPrice[9].value = fncMoney(intSubPrice)
}


function fncEmr(){
        var form = document.EstimateForm
        var intSubPrice = 0
        var intNumber = 0

        if(isNaN(form.frmEmr.value) || (form.frmEmr.value.length < 1)){
          intEmr = 0
          form.frmEmr.value = "0"
         }
    else{intEmr = parseInt(form.frmEmr.value)}
       
        intNumber = parseInt(form.frmEmr.value)
        intSubPrice = intNumber

        form.frmPrice[10].value = fncMoney(intSubPrice)
}

function fncPass(intFlag){
        var form = document.EstimateForm
        form.frmPrice[3].value = 0
        fncFlush()
        fncViewLayer(0)
        for(var i = 0; i < 3;i++){
                if(intFlag == 0){
                        form.frmEurailSeat[i].disabled = true
                }
                else{
                        form.frmEurailSeat[i].checked = false
                        form.frmEurailSeat[i].disabled = false
                }
        }               
}

function fncPassSeat(intFlag){
        var form = document.EstimateForm
        var intPass,intNum
        form.frmPrice[3].value = 0
        for(var i = 0; i < 3;i++){
                if(form.frmEurailPass[i].checked){intPass = i}
        }

        intNum = (intPass*3) + intFlag

        fncFlush()
        fncViewLayer(intNum)
}


function fncEstimate()
{
        var form = document.EstimateForm
        var intTotalPrice = 0

        for(var i = 0;i < form.frmPrice.length;i++){
                intTotalPrice = intTotalPrice + parseInt(fncNumber(form.frmPrice[i].value))
        }
       
        form.frmTotalPrice.value = fncMoney(intTotalPrice)
}

function fncMoney(varValue){
        var intValue = "bybiz" + varValue;
        var intLengthVal1 = intValue.length;
        var strSign = "";
        var strTail = ""
        var strObject = "";

        var intValue = intValue.substr(5,intLengthVal1-5);

        if(intValue.indexOf("-")==0){
                var strSign = "-";
                strValue = intValue.substr(1,(intLengthVal1-6))
        }
        else{strValue = intValue;}
       
        if(strValue.indexOf(".") > 0){
                var strFloat = strValue.split(".");
                var strTail = "." + strFloat[1].substr(0,2)
                strValue = strFloat[0]
        }
       
        var intLength = strValue.length;
        var intSubstract = Math.floor(intLength/3)
        if(intLength > 3){
                if((intLength/3) == intSubstract){
                        for(i=0;i < intSubstract;i++){
                                if(i==(intSubstract-1)){strObject = strObject + strValue.substr((i*3),3);}
                                else{strObject = strObject + strValue.substr((i*3),3) + ",";}
                        }       
                }
                else{
                        var intFirstSec = intLength - (intSubstract*3)
                        for(i=0;i < intSubstract+1;i++){
                                if(i==0){
                                        strObject = strValue.substr(0,intFirstSec) + ",";
                                }
                                else if(i==(intSubstract)){strObject = strObject + strValue.substr((i*3)-(3-intFirstSec),3);}
                                else{strObject = strObject + strValue.substr((i*3)-(3-intFirstSec),3) + ",";}
                        }       
                }
        }       
        else{strObject = strValue;}

        strObject = strSign + strObject + strTail;
        return(strObject);
}

function fncNumber(txtValue){
        var strValue = txtValue.split(",")
        var intValue = 0
        var intCof = 1000
        var intCount        
        var intThousand = 1
        if(strValue.length==1){intValue = parseInt(txtValue)}
        else{

                for(var i=0; i < strValue.length; i++){
                        intCount = strValue.length - i - 1

                        if(i >0){intThousand = intThousand * intCof}
       
                        if(i==0){intValue = parseInt(strValue[intCount])}
                        else{intValue = intValue + (parseInt(strValue[intCount]) * intThousand)}
                }

        }

        return(intValue)
}


function fncPrint()
{
        fncEstimate()
        if(window.print){
                window.print();
        }
        else{
                alert("넷스케이프 4.0이상, 익스플로러 5.0이상에서만 지원됩니다.");
        }
}

//-->
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" oncontextmenu="return false;">
<form name="EstimateForm" method="post">
  <table width="650" border="0" cellpadding="0" cellspacing="10" bgcolor="#CCCCCC">
    <tr>
      <td bgcolor="#FFFFFF"><!-- 내용시작 -->
  <table width="630" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td><img src="http://www.guidemap.net/estimate/estimate_img/est_title_top.jpg" width="630" height="89"></td>
    </tr>
        <tr>
      <td height="4"></td>
    </tr>
  </table>
  <table width="630" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td width="184"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_top1_1.jpg" width="184" height="33"></td>
      <td width="446"> <table width="440" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td width="97"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_top2.jpg" width="97" height="33" align="absmiddle"></td>
            <td width="45"><input type="text" name="frmTerm" maxlength="2" style="font-family:Tahoma; font-size:9pt; text-align:right; width:40px; border:1 solid #EA8500; height:20px" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncEat()"></td>
            <td width="25"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_top3.jpg" width="20" height="33"></td>
                        <td valign="bottom"><div align="right"><font color="#999999">* 적용환율 : <b>1,200</B> 원입니다.      </font></div></td>
          </tr>
        </table></td>
    </tr>
  </table>
  <table width="630" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td width="38"><img src="http://www.guidemap.net/estimate/estimate_img/est_img1.gif" width="38" height="210"></td>
      <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_1.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>  
                    <select name="frmAir" size="1" style="width:350px" onChange="fncAirline()">
                                                        <option value="0">항공권 구입 안함</option>

                                                        <option value="800000<CS>[유럽] 영국항공">[유럽] 영국항공</option>
       
                                                        <option value="1400000<CS>[유럽] 대한항공">[유럽] 대한항공</option>
       
                                                        <option value="800000<CS>[유럽] 케세이퍼시픽">[유럽] 케세이퍼시픽</option>
       
                                                        <option value="800000<CS>[유럽] 일본항공">[유럽] 일본항공</option>
       
                                                        <option value="1000000<CS>[유럽] 타이항공">[유럽] 타이항공</option>
       
                                                        <option value="750000<CS>[유럽] 스칸디나비아항공">[유럽] 스칸디나비아항공</option>
       
                                                        <option value="850000<CS>[유럽] 아나항공">[유럽] 아나항공</option>
       
                                                        <option value="1250000<CS>[유럽] 에어프랑스">[유럽] 에어프랑스</option>
       
                                                        <option value="1250000<CS>[유럽] 네델란드항공">[유럽] 네델란드항공</option>
       
                                                        <option value="1250000<CS>[유럽] 독일항공">[유럽] 독일항공</option>
       
                                                        <option value="1250000<CS>[유럽] 알이탈리아항공">[유럽] 알이탈리아항공</option>
       
                                                        <option value="1400000<CS>[유럽] 아시아나항공">[유럽] 아시아나항공</option>
       
                                                        <option value="1150000<CS>[지중해] 영국항공">[지중해] 영국항공</option>
       
                                                        <option value="1350000<CS>[지중해] 일본항공">[지중해] 일본항공</option>
       
                                                        <option value="1000000<CS>[지중해] 타이항공">[지중해] 타이항공</option>
       
                                                        <option value="1050000<CS>[지중해] 싱가폴항공">[지중해] 싱가폴항공</option>
       
                                        </select> </td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_2.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>  
                    <select name="frmTax" size="1" style="width:350px" onChange="fncTax()">
                                                <option>지역을 선택하세요</option>

                                                        <option value="120000<CS>북유럽 공항">북유럽 공항</option>
       
                                                        <option value="100000<CS>중부유럽 공항">중부유럽 공항</option>
       
                                                        <option value="80000<CS>지중해 공항">지중해 공항</option>
       
                                        </select> </td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_3.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>  
                    <select name="frmDover" size="1" style="width:350px" onChange="fncDover()">
                                                        <option value="0">도버횡단 안함</option>

                                                        <option value="110000">항공이용</option>
       
                                                        <option value="65000">유로라인</option>
       
                                                        <option value="345000">유로스타(1등석-성인)</option>
       
                                                        <option value="205000">유로스타(1등석-유스)</option>
       
                                                        <option value="137000">유로스타(1등석-아동)</option>
       
                                                        <option value="193000">유로스타(1등석-성인:유레일패스 소지)</option>
       
                                                        <option value="137000">유로스타(1등석-아동:유레일패스 소지)</option>
       
                                                        <option value="246000">유로스타(2등석-성인)</option>
       
                                                        <option value="95000">유로스타(2등석-유스)</option>
       
                                                        <option value="88000">유로스타(2등석-아동)</option>
       
                                                        <option value="95000">유로스타(2등석-성인:유레일패스 소지)</option>
       
                                                        <option value="88000">유로스타(2등석-아동:유레일패스 소지)</option>
       
                                                        </select> </td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_4.gif" width="87" height="28"></td>
                  <td width="9" valign="bottom"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1_long.gif" width="9" height="50"></td>
                  <td><table width="386" align="right" cellpadding="0" cellspacing="0">
                      <tr>
                        <td height="5" colspan="4"></td>
                      </tr>
                      <tr>
                        <td width="80" height="20"><input type="radio" name="frmEurailPass" value="1" onclick="fncPass(1)">
                          유레일</td>
                        <td width="80"><input type="radio" name="frmEurailPass" value="2" onclick="fncPass(2)">
                          플렉시</td>
                        <td width="80"><input type="radio" name="frmEurailPass" value="3" onclick="fncPass(3)">
                          셀렉트</td>
                        <td><input type="radio" name="frmEurailPass" value="0" onclick="fncPass(0)" checked>
                          구입 안함</td>
                      </tr>
                      <tr>
                        <td height="20"><input type="radio" name="frmEurailSeat" value="1" onclick="fncPassSeat(1)" disabled>
                          Normal</td>
                        <td><input type="radio" name="frmEurailSeat" value="2" onclick="fncPassSeat(2)" disabled>
                          Saver </td>
                        <td><input type="radio" name="frmEurailSeat" value="3" onclick="fncPassSeat(3)" disabled>
                          Youth</td>
                        <td><div id="lyrPassTerm0" style="width:110px; height:22px; position:absolute; left:392px; top:252px; z-index:1;">
                            <select name="frmEurailTerm" size="1" style="width:110px" disabled>
                              <option>기간 선택</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm1" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(1)">
                              <option>기간 선택</option>
                              <option value="591">15일</option>
                              <option value="765">21일</option>
                              <option value="949">1개월</option>
                              <option value="1341">2개월</option>
                              <option value="1657">3개월</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm2" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(2)">
                              <option>기간 선택</option>
                              <option value="501">15일</option>
                              <option value="651">21일</option>
                              <option value="807">1개월</option>
                              <option value="1141">2개월</option>
                              <option value="1411">3개월</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm3" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(3)">
                              <option>기간 선택</option>
                              <option value="417">15일</option>
                              <option value="537">21일</option>
                              <option value="667">1개월</option>
                              <option value="941">2개월</option>
                              <option value="1163">3개월</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm4" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(4)">
                              <option>기간 선택</option>
                              <option value="697">10일(2개월내)</option>
                              <option value="917">15일(2개월내)</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm5" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(5)">
                              <option>기간 선택</option>
                              <option value="595">10일(2개월내)</option>
                              <option value="781">15일(2개월내)</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm6" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(6)">
                              <option>기간 선택</option>
                              <option value="491">10일(2개월내)</option>
                              <option value="645">15일(2개월내)</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm7" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(7)">
                              <option>기간 선택</option>
                              <option value="359">5일(3개국)</option>
                              <option value="397">6일(3개국)</option>
                              <option value="473">8일(3개국)</option>
                              <option value="545">10일(3개국)</option>
                              <option value="401">5일(4개국)</option>
                              <option value="439">6일(4개국)</option>
                              <option value="515">8일(4개국)</option>
                              <option value="587">10일(4개국)</option>
                              <option value="441">5일(5개국)</option>
                              <option value="479">6일(5개국)</option>
                              <option value="555">8일(5개국)</option>
                              <option value="627">10일(5개국)</option>
                              <option value="797">15일(5개국)</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm8" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(8)">
                              <option>기간 선택</option>
                              <option value="307">5일(3개국)</option>
                              <option value="339">6일(3개국)</option>
                              <option value="403">8일(3개국)</option>
                              <option value="463">10일(3개국)</option>
                              <option value="343">5일(4개국)</option>
                              <option value="375">6일(4개국)</option>
                              <option value="439">8일(4개국)</option>
                              <option value="499">10일(4개국)</option>
                              <option value="377">5일(5개국)</option>
                              <option value="409">6일(5개국)</option>
                              <option value="473">8일(5개국)</option>
                              <option value="533">10일(5개국)</option>
                              <option value="677">15일(5개국)</option>
                            </select>
                          </div>
                          <div id="lyrPassTerm9" style="width:110px; height:22px; position:absolute; left:392; top:252; z-index:1;visibility:hidden">
                            <select name="frmEurailTerm" size="1" style="width:110px" onChange="fncEurail(9)">
                              <option>기간 선택</option>
                              <option value="252">5일(3개국)</option>
                              <option value="279">6일(3개국)</option>
                              <option value="332">8일(3개국)</option>
                              <option value="382">10일(3개국)</option>
                              <option value="282">5일(4개국)</option>
                              <option value="309">6일(4개국)</option>
                              <option value="362">8일(4개국)</option>
                              <option value="412">10일(4개국)</option>
                              <option value="310">5일(5개국)</option>
                              <option value="337">6일(5개국)</option>
                              <option value="390">8일(5개국)</option>
                              <option value="440">10일(5개국)</option>
                              <option value="559">15일(5개국)</option>
                            </select>
                          </div>
                            </td>
                      </tr>
                                          <tr>
                        <td height="5" colspan="4"></td>
                      </tr>
                    </table></td>
                  <td width="11" valign="bottom"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2_long.gif" width="11" height="50"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_5.gif" width="87" height="28"></td>
                        <td width="9" valign="bottom"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1_long.gif" width="9" height="50"></td>
                  <td>
                    <table width="372" border="0" align="center" cellpadding="0" cellspacing="0">
                      <tr>
                        <td height="5" colspan="4"></td>
                      </tr>
                      <tr>
                        <td width="82">여권</td>
                        <td width="115"><select name="frmPassport" size="1" style="width:80px" onchange="fncETC()">
                            <option value="0" selected>신청안함</option>
                            <option value="45000">병역 필</option>
                            <option value="15000">병역 미필</option>
                          </select></td>
                        <td width="71">국제학생증</td>
                        <td width="104"><select name="frmLicence" size="1" style="width:80px" onchange="fncETC()">
                            <option value="0" selected>신청안함</option>
                            <option value="15000">신청</option>
                          </select></td>
                      </tr>
                      <tr>
                        <td height="5" colspan="4"></td>
                      </tr>
                      <tr>
                        <td>유스호스텔증</td>
                        <td><select name="frmYOUTH" size="1" style="width:80px"  onchange="fncETC()">
                            <option value="0" selected>신청안함</option>
                            <option value="15000">25세 미만</option>
                            <option value="20000">25세 이상</option>
                          </select></td>
                        <td>여행자보험</td>
                        <td><select name="frmINS" size="1" style="width:80px" onchange="fncETC()">
                            <option value="0" selected>가입안함</option>
                            <option value="8000">7일</option>
                            <option value="8800">10일</option>
                            <option value="10400">14일</option>
                            <option value="11200">17일</option>
                            <option value="12800">21일</option>
                            <option value="13600">24일</option>
                            <option value="15200">27일</option>
                            <option value="16000">30일</option>
                            <option value="19200">45일</option>
                          </select></td>
                      </tr>
                      <tr>
                        <td height="5" colspan="4"></td>
                      </tr>
                    </table></td>
                        <td width="11" valign="bottom"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2_long.gif" width="11" height="50"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
        </table></td>
    </tr>
  </table>
  <br>
  <table width="630" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td><img src="http://www.guidemap.net/estimate/estimate_img/est_title_top1_2.jpg" width="192" height="33"></td>
    </tr>
  </table>
  <table width="630" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td width="38"><img src="http://www.guidemap.net/estimate/estimate_img/est_img2.gif" width="38" height="189"></td>
      <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_7.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>   좌석
                    <input type="text" name="frmNight" style="width:25px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncTrain()"><input type="hidden" name="frmNightPrice" value=7000>
                    회       쿠셋
                    <input type="text" name="frmNight" style="width:25px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncTrain()"><input type="hidden" name="frmNightPrice" value=30000>
                    회      슬리핑카
                    <input type="text" name="frmNight" style="width:25px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncTrain()"><input type="hidden" name="frmNightPrice" value=70000>
                    회</td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_6.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>    호텔
                    <input type="text" name="frmHotel" style="width:25px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncHotel()"><input type="hidden" name="frmHotelPrice" value=70000>
                    일     유스호스텔
                    <input type="text" name="frmHotel" style="width:25px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncHotel()"><input type="hidden" name="frmHotelPrice" value=35000>
                    일     민박
                    <input type="text" name="frmHotel" style="width:25px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncHotel()"><input type="hidden" name="frmHotelPrice" value=30000>
                    일</td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_8.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>   <input type="hidden" name="frmEatKeep" disabled onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncEat()"><input type="radio" name="frmEat" disabled onClick="fncEat()">
                    알뜰형(4,000원)
                    <input type="hidden" name="frmEatPrice" value=12000>  
                                  <input type="radio" name="frmEat" disabled onClick="fncEat()">
                    일반형(7,000원)
                    <input type="hidden" name="frmEatPrice" value=21000>  
                                  <input type="radio" name="frmEat" disabled onClick="fncEat()">
                    고급형(12,000원)
                    <input type="hidden" name="frmEatPrice" value=36000></td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_9.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>  
                    <input type="text" name="frmTrance" style="width:35px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncTrance()">
                    회 이용
                    <input type="hidden" name="frmTrancePrice" value=3000>
                    <font color="#999999">(1 회 평균요금 3,000원)</font></td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_10.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>  
                    <input type="text" name="frmCulture" style="width:35px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncCulture()">
                    회
                    <input type="hidden" name="frmCulturePrice" value=40000>
                     <font color="#999999">(평균요금 40,000원)</font></td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
          <tr>
            <td><table width="592" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="87"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_11.gif" width="87" height="28"></td>
                  <td width="9"><img src="http://www.guidemap.net/estimate/estimate_img/line_r1.gif" width="9" height="28"></td>
                  <td>  
                    <input type="text" name="frmEmr" style="width:90px; border:1 solid #999999; height:18px;" onkeyPress="if ((event.keyCode<48) || (event.keyCode>57)) event.returnValue=false;" OnKeyUp="fncEmr()">  원</td>
                  <td width="11"><img src="http://www.guidemap.net/estimate/estimate_img/line_r2.gif" width="11" height="28"></td>
                  <td width="90"><input type="text" name="frmPrice" maxlength="10" readOnly style="font-family:Tahoma; font-size:9pt; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none; width:70px;" value="0"><font color="#CCCCCC">원</font></td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/line_c.gif" width="592" height="1"></td>
          </tr>
        </table></td>
    </tr>
  </table>
  <table width="630" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td><table width="199" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <td width="83"><img src="http://www.guidemap.net/estimate/estimate_img/est_title_12.gif" width="83" height="38"></td>
            <td><div align="right">
                <input type="text" name="frmTotalPrice" maxlength="10" readOnly style="font-family:Tahoma;font-weight:bold; font-size:11pt; color:red; text-align:right; background-color:FCFCFC; border-width:0pt; border-style:none;width:100px" value="0">
              </div></td>
            <td><img src="http://www.guidemap.net/estimate/estimate_img/est_title_12_1.gif" width="23" height="38"></td>
          </tr>
        </table></td>
    </tr>
    <tr>
      <td height="6"></td>
    </tr>
    <tr>
      <td bgcolor="#B4B4B2"><div align="center"><a href="javascript:fncEstimate()"><img src="http://www.guidemap.net/estimate/estimate_img/bu_est1.gif" width="92" height="26" border="0"></a>
            <a href="javascript:fncPrint()"><img src="http://www.guidemap.net/estimate/estimate_img/bu_est2.gif" width="58" height="26" border="0"></a>  
          <a href="javascript:self.close();"><img src="http://www.guidemap.net/estimate/estimate_img/bu_est3.gif" width="46" height="26" border="0"></a>
        </div></td>
    </tr>
  </table><!-- 내용끝 -->
  </td>
    </tr>
  </table>
  </form>
</body>
</html>
Posted by 알 수 없는 사용자
,