/home/mjc1/public_html/html/millennium/rightmenu.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php include_once("./_common2.php"); ?>
<!-- ¿À¸¥ÂÊ µû¶ó´Ù´Ï±ñ ¸Þ´º########################## 1-->
<div id='D1' style='position:absolute;left:1000px;top:100px;z-index:10;'>
<table border="0" cellpadding="0" cellspacing="2" width="82">

<tr>
    <td>
    <a href="../smart_main.php"><img src="./img/common/quicksmart2.gif" border="0"></a>
    </td>
</tr>
<tr>
    <td>
    <a href="./product_smarttax.php"><img src="./img/common/quicksmarttax.gif" border="0"></a>
    </td>
</tr>
<tr>
    <td>
    <a href="./pointbuynow.php"><img src="./img/common/quickpoint.gif" border="0"></a>
    </td>
</tr>
<tr>
    <td><IMG SRC="./img/common/quickmenu.gif" BORDER="0" usemap="#scroll"></td>
    <map name="scroll" id="scroll">
    <area shape="rect" onfocus="blur()" coords="2,23,103,65" href="../millennium/customerprice.php" style="cursor:pointer"> <!-- °ßÀû¿äû -->
    <area shape="rect" onfocus="blur()" coords="2,66,103,108" href="../millennium/buynow.php" style="cursor:pointer"> <!-- Á¦Ç°±¸¸Å -->
    <area shape="rect" onfocus="blur()" coords="2,109,103,151" href="../millennium/buypaperbest.php" style="cursor:pointer"> <!-- ¿ëÁöÁÖ¹® -->
    <area shape="rect" onfocus="blur()" coords="2,152,103,194" href="../millennium/product_pdamain.php" style="cursor:pointer"> <!-- PDA¼Ö·ç¼Ç -->
    <area shape="rect" onfocus="blur()" coords="2,195,103,237" href="../millennium/easytax_main.php" style="cursor:pointer"> <!-- ÀüÀÚ¼¼±Ý°è»ê¼­ -->
    </map>
</tr>
<tr>
    <td></td>
</tr>
</table>
</div>

<script language="javascript">
function CheckUIElements()
{
    var yMenu1From, yMenu1To, yOffset, timeoutNextCheck;
    var wndWidth = parseInt(document.body.clientWidth);
        yMenu1From   = parseInt (D1.style.top, 10);
        yMenu1To     = document.body.scrollTop + 110;    // À§ÂÊ À§Ä¡
    timeoutNextCheck = 500;
    if ( yMenu1From != yMenu1To ) {
        yOffset = Math.ceil( Math.abs( yMenu1To - yMenu1From ) / 20 );    //À̵¿ ¼Óµµ
        if ( yMenu1To < yMenu1From )yOffset = -yOffset;
        D1.style.top = parseInt (D1.style.top, 10) + yOffset;
        D1.style.left = ((wndWidth - 990)/2)+990;

        //dir_icon.style.left = ((wndWidth - 832)/2)+832;

        timeoutNextCheck = 10;
    }
    setTimeout ("CheckUIElements()", timeoutNextCheck);
}

function MovePosition()
{
    var wndWidth = parseInt(document.body.clientWidth);
            D1.style.top = document.body.scrollTop + -250;
            D1.style.visibility = "visible";
    CheckUIElements();
    return true;
}

MovePosition();
</script>
<!-- ¿À¸¥ÂÊ µû¶ó´Ù´Ï±ñ ¸Þ´º########################## 2-->