<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>¸¶¿ì½ºÆÐµå | ¿¬ÇʲÈÀÌ | Ã¥¹Þħ </title>
<script language="JavaScript">
<!--
function namosw_page_left(element)
{
if (navigator.appName.indexOf('Netscape', 0) != -1) {
x = element.pageX;
} else {
x = element.offsetLeft;
for (el = element.offsetParent; el; el = el.offsetParent)
x += el.offsetLeft;
}
return x;
}
function namosw_page_top(element)
{
if (navigator.appName.indexOf('Netscape', 0) != -1) {
y = element.pageY;
} else {
y = element.offsetTop;
for (el = element.offsetParent; el; el = el.offsetParent)
y += el.offsetTop;
}
return y;
}
function namosw_page_right(el) {
wid =  (navigator.appName.indexOf('Netscape', 0) != -1) ? window.innerWidth : 
document.body.offsetWidth;
return wid - namosw_page_left(el);
}
function namosw_page_bottom(el) {
hei =  (navigator.appName.indexOf('Netscape', 0) != -1) ? window.innerHeight : 
document.body.offsetHeight;
return hei - namosw_page_top(el);
}
function namosw_set_visible(el, flag) {
if (navigator.appName.indexOf('Netscape', 0) != -1) {
el.visibility = flag ? 'show' : 'hide';
} else {
el.style.visibility = flag ? 'visible' : 'hidden';
}
}
function namosw_set_pos(el, x, y)
{
if (navigator.appName.indexOf('Netscape', 0) != -1) {
el.left = x;
el.top  = y;
} else {
el.style.pixelLeft = x;
el.style.pixelTop  = y;
}
}
function namosw_left(el) {
return (navigator.appName.indexOf('Netscape', 0) != -1) ? el.left : 
el.style.pixelLeft;
}
function namosw_top(el) {
return (navigator.appName.indexOf('Netscape', 0) != -1) ? el.top : 
el.style.pixelTop;
}
function namosw_is_relative(el) {
return (navigator.appName.indexOf('Netscape', 0) != -1) ? el.position == 
'relative' :
el.style.position == 'relative';
}
function namosw_is_space(c)
{
return (c == ' ' || c == '\t' || c == '\r' || c == '\n');
}
function namosw_process_byword(list, index)
{
var el = list[index];
if (navigator.appName.indexOf('Netscape', 0) != -1)
return;
if (!el)
return;
if (el.byword == false)
return;
var dest = "";
var src = el.innerHTML;
var objNum = document.NamoAnimationObjects.length;
var wordi = 0, i = 0, mark;
while (i < src.length) {
mark = i;
while (i < src.length) {
while (i < src.length && namosw_is_space(src.charAt(i))) i++;
if    (i < src.length && src.charAt(i) != '<') break;
while (i < src.length && src.charAt(i) != '>') i++;
if    (i < src.length && src.charAt(i) == '>') i++;
}
dest += src.substring(mark, i);
if (i >= src.length) break;
dest += '<span id=\"' + el.name + 'word' + (wordi+1) + '\" 
style=\"position:relative\">';
mark = i;
while (i < src.length && !namosw_is_space(src.charAt(i)) && src.charAt(i) != 
'<') i++;
while (i < src.length && namosw_is_space(src.charAt(i)) == ' ') i++;
if (el.byword == false) while (i < src.length && src.charAt(i) != '<') i++;
dest += src.substring(mark, i);
dest += '</span>';
wordi++;
}
el.innerHTML = dest;
el.posLeft   = 0;
el.style.visibility = 'visible';
list[index] = namosw_new_animation_object(el.name+'word1', el.startCondObj, 
el.startCondTime,
el.startXPos, el.startYPos, el.pathType, false, el.zoom, el.stepNum);
for (i = 1; i < wordi; i++) {
list[objNum+i-1] = namosw_new_animation_object(el.name+'word'+(i+1), (el.byword 
? (el.name+'word'+i) : el.startCondObj), (el.byword ? 0 : el.startCondTime), 
el.startXPos, el.startYPos, el.pathType, false, el.zoom, el.stepNum);
list[objNum+i-1].style.posLeft = 0;
list[objNum+i-1].style.visibility = 'visible';
}
el.startCondTime = -1;
}
function namosw_new_animation_object(name, obj, time, xpos, ypos, path, byword, 
zoom, stepNum)
{
var str = (navigator.appName.indexOf('Netscape', 0) != -1) ? 'document.'+name : 
'document.all[\''+name+'\']';
var object;
if (name == '') return 0;
object = eval(str);
if (!object) return 0 ;
object.name     = name;
object.startCondObj  = obj;
object.startCondTime = time;
object.startXPos     = xpos;     // left, center, right
object.startYPos     = ypos;     // top,  center, bottom
object.pathType      = path;     // line, arc, spiral
object.byword        = byword;   // true, false
object.zoom          = zoom;
object.stepNum       = stepNum;
return object;
}
function namosw_animate(str)
{
var live_object_num = 0;
for (var i = 0; i < document.NamoAnimationObjects.length; i++) {
var el = document.NamoAnimationObjects[i];
if (!el) continue;
if (el.countDown > 0) {
el.countDown = (0 < el.countDown-10) ? el.countDown-10 : 0;
live_object_num++;
continue;
}
if (el.countDown < 0)
continue;
if (el.pathType == 'line') {
newx = el.sx + el.step * (el.ex - el.sx) / el.stepNum;
newy = el.sy + el.step * (el.ey - el.sy) / el.stepNum;
} else if (el.pathType == 'arc') {
linex = el.sx + el.step * (el.ex - el.sx) / el.stepNum;
liney = el.sy + el.step * (el.ey - el.sy) / el.stepNum;
x = (el.ex + el.sx) / 2;
y = (el.ey + el.sy) / 2;
sinv = Math.sin(Math.PI*el.step/el.stepNum*(el.ex-el.sx > 0 ? -1:1));
cosv = Math.cos(Math.PI*el.step/el.stepNum);
newx = ((cosv*(el.sx-x) - sinv*(el.sy-y) + x) + linex) / 2;
newy = ((sinv*(el.sx-x) + cosv*(el.sy-y) + y) + liney) / 2;
} else if (el.pathType == 'spiral') {
sinv = Math.sin(2*Math.PI*el.step/el.stepNum);
cosv = Math.cos(2*Math.PI*el.step/el.stepNum);
r = (el.stepNum-el.step)/el.stepNum;
newx = el.ex + (cosv*(el.sx-el.ex) - sinv*(el.sy-el.ey))*r;
newy = el.ey + (sinv*(el.sx-el.ex) + cosv*(el.sy-el.ey))*r;
}
if (el.style) {
if (el.zoom == 'zoomin')
el.style.fontSize = 50+50*el.step/el.stepNum + '%';
else if (el.zoom == 'zoomout')
el.style.fontSize = 200-100*el.step/el.stepNum + '%';
}
namosw_set_pos(el, newx, newy);
namosw_set_visible(el, true);
if (el.step++ == el.stepNum) {
namosw_set_pos(el, el.ex, el.ey);
el.step = 0;
el.countDown = -1;
// trigger other object(self can be trigger)
for (var j = 0; j < document.NamoAnimationObjects.length; j++) {
var obj = document.NamoAnimationObjects[j];
if (obj.countDown < 0 && obj.startCondObj == el.name) {
obj.countDown = obj.startCondTime;
live_object_num++;
if (i < j) {
obj.countDown += 10;
live_object_num--;
}
}
}
} else {
live_object_num++;
}
}
if (live_object_num > 0)
window.setTimeout("namosw_animate();", 10);
}
function namosw_init_animation()
{
var i    = 0;
var list = new Array;
list[i++] = namosw_new_animation_object('alayer1', null, 10, 'center', 
'bottom', 'spiral', false, 'zoomin', 80);
document.NamoAnimationObjects = list;
var length = list.length;
for (i = 0; i < length; i++)
namosw_process_byword(list, i);
for (i = 0; i < list.length; i++) {
if (!list[i]) continue;
list[i].countDown = (list[i].startCondObj == null) ? list[i].startCondTime : -1;
list[i].step      = 0;
list[i].sx        = (list[i].startXPos == 'left')  ? -namosw_page_left(list[i]) 
 :
(list[i].startXPos == 'right') ?  namosw_page_right(list[i]) : 0;
list[i].sy        = (list[i].startYPos == 'top')   ? -namosw_page_top(list[i])  
 :
(list[i].startYPos == 'bottom')?  namosw_page_bottom(list[i]): 0;
list[i].ex      = 0;
list[i].ey       = 0;
if (!namosw_is_relative(list[i])) {
list[i].sx += namosw_left(list[i]);
list[i].sy += namosw_top(list[i]);
list[i].ex += namosw_left(list[i]);
list[i].ey += namosw_top(list[i]);
}
if (list[i].pathType == 'spiral') {
list[i].sx = Math.max(-200+list[i].ex, Math.min(200+list[i].ex, list[i].sx));
list[i].sy = Math.max(-200+list[i].ey, Math.min(200+list[i].ey, list[i].sy));
}
namosw_set_pos(list[i], list[i].sx, list[i].sy);
namosw_set_visible(list[i], false);
}
window.setTimeout("namosw_animate();", 10);
}
// -->
</script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" 
OnLoad="namosw_init_animation();">
<table cellpadding="0" cellspacing="0" width="609" height="115" 
background="../home/santa_8/images/main_back-3.jpg">
<tr>
<td width="609" height="56" valign="top" colspan="6">
<p id="alayer1" style="position:relative; visibility:hidden;" 
align="center"><img src="http://santa.co.kr/images/img003.gif"; border="0" 
width="177" height="46">
&nbsp;<img src="http://santa.co.kr/images/img004.gif"; border="0" width="389" 
height="43"></p>
</td>
</tr>
<tr>
<td width="81" height="50" valign="top" rowspan="2">
<p><img src="http://santa.co.kr/img005.gif"; border="0" width="77" 
height="57"></p>
</td>
<td width="136" height="21" valign="top">
<p><font color="#FF66FF" face="µ¸¿ò"><span style="font-size:11pt;"><b>¸íÇÔ
¹«·á Á¦ÀÛ!!</b></span></font></p>
</td>
<td width="77" height="50" valign="top" rowspan="2">
<p><img src="http://santa.co.kr/img006.gif"; border="0" width="77" 
height="57"></p>
</td>
<td width="131" valign="top">
<p><font color="#FF66FF" face="µ¸¿ò"><span 
style="font-size:11pt;"><b>Æ÷¸®10,000¿ø!</b></span></font></p>
</td>
<td width="63" height="50" align="center" valign="middle" rowspan="2">
<p><img src="http://santa.co.kr/img007.gif"; border="0"></p>
</td>
<td width="121" valign="top">
<p><font face="µ¸¿ò" color="#FF66FF"><span style="font-size:11pt;"><b>»ùÇÃ
ÁõÁ¤</b></span></font></p>
</td>
</tr>
<tr>
<td width="136" valign="top">
<p><font color="black" face="µ¸¿ò"><span style="font-size:8pt;">ÀÎÅͳݿ¡¼­
100,000¿ø ÀÌ»ó ±¸¸ÅÇÑ Èñ¸Á°í°´¿¡°Ô <br>Æ÷¸®¸íÇÔ 300Àå ¹«·á!!</span></font></p>
</td>
<td width="131" valign="top">
<p><font face="µ¸¿ò"><span style="font-size:8pt;">Æ÷¸®¸íÇÔ 5°Ç ÀÌ»ó
ÁÖ¹® °í°´ °Ç´ç:10,000¿ø<br></span></font><font face="µ¸¿ò" color="red"><span 
style="font-size:8pt;">ÆíÁýºñ,Åùèºñ
¹«·á!!</span></font></p>
</td>
<td width="121" valign="top">
<p><font face="µ¸¿ò"><span style="font-size:8pt;">´ë¸®Á¡, µô·¯ °¡ÀÔ&nbsp;¸ðµÎ
Æ÷¸®¸íÇÔ »ùÇÃÁý, PP»óǰ&nbsp;»ùÇà ÁõÁ¤</span></font></p>
</td>
</tr>
</table>
<div align="left">
<table style="line-height:100%; margin-top:0; margin-bottom:0;" border="0" 
cellpadding="0" cellspacing="0" width="610">
<tr>
<td width="5" align="left" valign="top" height="464">
<p>&nbsp;</p>
</td>
<td width="471" align="left" valign="top" height="464">
<table align="center" cellspacing="0" width="454" bordercolordark="white" 
bordercolorlight="black" cellpadding="0">
<tr>
<td width="749" height="471" valign="top">
<table border="1" cellspacing="0" bgcolor="#003F3A" width="455" cellpadding="0" 
bordercolordark="white" bordercolorlight="black">
<tr>
<td width="150" background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center">
<font face="µ¸¿ò" color="#333333"><span style="font-size:10pt;">È«º¸¿ë
³ëÆ®</span></font></p>
</td>
<td width="150" background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center"><font face="µ¸¿ò"><span 
style="font-size:10pt;">&nbsp;Ã¥¹Þħ/È­ÀÏ</span></font></p>
</td>
<td width="147" background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center"><font face="µ¸¿ò"><span 
style="font-size:10pt;">¸¶¿ì½ºÆÐµå/Æ÷½ºÆ®ÀÕ</span></font></p>
</td>
</tr>
<tr>
<td width="150" bgcolor="white">
<p align="center"><a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/note/pro/ST-0105-sp.jpg"; width="150" height="194" 
border="0"></a></p>
</td>
<td width="150" bgcolor="white">
<p align="center"><a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/plan_1/board/images/CH-0028_tm.jpg"; width="149" 
height="208" border="0"></a></p>
</td>
<td width="147" bgcolor="white">
<p align="center"><a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/plan_1/postit/images/F04(1)-S.jpg" width="150" 
height="183" border="0"></a></p>
</td>
</tr>
<tr>
<td width="150" background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center"><font face="µ¸¿ò" size="2">¸íÇÔ/Àü´Ü/½ºÆ¼Ä¿</font></p>
</td>
<td width="150" background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center"><font face="µ¸¿ò" size="2">ȸ¿ø
¼öø·ù
Á¦ÀÛ</font></p>
</td>
<td width="147" background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center"><font face="µ¸¿ò" size="2">ºÎä
/ ¿¬ÇÊÅë</font></p>
</td>
</tr>
<tr>
<td width="150" bgcolor="white">
<p align="center"><font face="µ¸¿ò" size="2"><a href="http://santa.co.kr"; 
target="_blank"><img 
src="http://santa.co.kr/name/sample_name/t001_352jpg/T-116_1.jpg"; width="158" 
height="100" border="0"></a></font></p>
</td>
<td width="150" bgcolor="white">
<p align="center"><a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/note/images/pocket(missing)-1.jpg" width="150" 
height="88" border="0"></a></p>
</td>
<td width="147" bgcolor="white" align="center">
<p align="center">&nbsp;<a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/pan/images_pan/belheung.jpg"; width="150" height="117" 
border="0"></a></p>
</td>
</tr>
<tr>
<td width="150" bgcolor="white" 
background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center"><font face="µ¸¿ò"><span style="font-size:10pt;">Ä«·»´Ù
Á¦ÀÛ</span></font></p>
</td>
<td width="150" bgcolor="white" 
background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center"><font face="µ¸¿ò"><span style="font-size:10pt;">´ÙÀ̾
Á¦ÀÛ</span></font></p>
</td>
<td width="147" bgcolor="white" align="center" 
background="http://santa.co.kr/note/images/bg100.gif";>
<p align="center"><font face="µ¸¿ò"><span style="font-size:10pt;">¿¬ÇÊÅë
/ ÁÖÀھȳ»</span></font></p>
</td>
</tr>
<tr>
<td width="150" bgcolor="white" valign="top">
<p align="center"><a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/images/desk_big03_1.jpg"; width="150" height="157" 
border="0"></a></p>
</td>
<td width="150" bgcolor="white" valign="top">
<p align="center"><a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/images/BH37-1_1.jpg"; width="150" height="120" 
border="0"></a></p>
</td>
<td width="147" bgcolor="white" align="center" valign="top">
<p align="center"><a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/images/pancase_001.jpg"; width="150" height="162" 
border="0"></a></p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td align="left" height="464">
<p>&nbsp;</p>
</td>
<td align="left" valign="top" width="108" height="464">
<div align="left">
<table cellpadding="0" cellspacing="0">
<tr>
<td width="120" height="1%">
<p><a href="http://santa.co.kr"; target="_blank"><img 
src="http://santa.co.kr/img10/main_right_top.jpg"; width="130" height="132" 
border="0"></a></p>
</td>
</tr>
<tr>
<td width="120" height="200" 
background="http://santa.co.kr/images/main_right_middle.jpg"; align="left" 
valign="top">
<table cellpadding="0" cellspacing="0" width="127" align="center">
<tr>
<td width="3">
<p>&nbsp;</p>
</td>
<td width="124">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td width="3">
<p>&nbsp;</p>
</td>
<td width="124">
<p style="line-height:110%;"><img 
src="http://santa.co.kr/img10/smartbutton19123.gif"; border="0" width="94" 
height="17"></p>
</td>
</tr>
<tr>
<td width="3" valign="baseline" height="88">
<p style="line-height:105%; margin-top:0; margin-bottom:0;">&nbsp;</p>
</td>
<td align="left" valign="baseline" height="88">
<p align="left" style="line-height:110%; margin-top:0; margin-bottom:0;"><span 
style="font-size:8pt;">»óǰ°³¹ß,
»ý»ê¿¡¼­ ÆÇ¸Å ±îÁö ¸ðµç ½Ã½ºÅÛÀ»
°®Ãá ½ÑŸ¸¶À»! Áñ°Å¿î °¡°ÝÀ¸·Î ±¤°íÁÖ¸¦
¸ð½Ê´Ï´Ù..<br>&nbsp;</span></p>
</td>
</tr>
<tr>
<td width="3" rowspan="2" height="97">
<p style="line-height:105%; margin-top:0; margin-bottom:0;">&nbsp;</p>
</td>
<td width="124">
<p style="line-height:110%; margin-top:0; margin-bottom:0;"><img 
src="http://santa.co.kr/img10/smartbutton9892.gif"; border="0" width="120" 
height="17"></p>
</td>
</tr>
<tr>
<td height="79">
<p style="line-height:110%; margin-top:0; margin-bottom:0;"><span 
style="font-size:8pt;">¼Ò·®ÀÇ È«º¸»óǰÀ»
¿ø»öÀμ⸦
ÇÏ¿© ±¤°íÁÖ°¡ ¿øÇÏ´Â ¸ðµç
°ÍÀ» ¹Ý¿µÇÏ´Â ½Ã½ºÅÛ ¿Ïºñ!!!<br>&nbsp;</span></p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="120" height="105" 
background="http://santa.co.kr/img10/main_right_bottom.jpg"; align="left" 
valign="top">
<div align="left">
<table cellpadding="0" cellspacing="0" width="130">
<tr>
<td width="130" colspan="2">
<p>&nbsp;&nbsp;<img src="http://santa.co.kr/img10/smartbutton11073.gif"; 
border="0" width="75" height="17"></p>
</td>
</tr>
<tr>
<td width="7">
<p style="line-height:110%; margin-top:0; margin-bottom:0;">&nbsp;</p>
</td>
<td width="123" rowspan="2">
<p style="line-height:110%; margin-top:0; margin-bottom:0;"><span 
style="font-size:8pt;">²÷ÀÓ¾øÀº
¿¬±¸·Î<br>º¸´Ù È¿°úÀûÀÎ<br>±¤°í»óǰÀ»
°³¹ßÇØ<br>°©´Ï´Ù</span></p>
</td>
</tr>
<tr>
<td width="7">
<p style="line-height:110%; margin-top:0; margin-bottom:0;">&nbsp;</p>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<HR color=#8bb5e2>
<DIV align=center>
<FONT face=±¼¸² size=2 color=#8bb5e2>º» ¸ÞÀÏÀº Á¤º¸Åë½ÅºÎ ±Ç°í »çÇ׿¡ ÀǰÅ
Á¦¸ñ¿¡ [±¤°í]¶ó Ç¥½ÃµÈ ±¤°í ¸ÞÀÏÀÔ´Ï´Ù.</FONT><BR>
<A style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; FONT-SIZE: 12px;
PADDING-BOTTOM: 3px; COLOR: #ffff00; PADDING-TOP: 3px; FONT-FAMILY: ±¼¸²;
BACKGROUND-COLOR: #8bb5e2; TEXT-DECORATION: none"
href="mailto:[EMAIL PROTECTED]">¼ö½Å°ÅºÎ[Deny]</A>
<FONT color=#8bb5e2  size=2 color=#8bb5e2>¹öưÀ» Ŭ¸¯ÇÏ½Ã¸é ¼ö½Å°ÅºÎ󸮰¡ 
ÀÌ·ç¾î Áý´Ï´Ù.<br>
If you don't want to receive this mail anymore, click here [Deny]</FONT>
</DIV>
<HR color=#8bb5e2>
</body>
</html>
<script language="JavaScript"></script><script language="JavaScript"></script>

Reply via email to