LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (June 2002, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 25 Jun 2002 02:36:47 +0900
Reply-To:     test@test.co.kr
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         test <test@TEST.CO.KR>
Subject:      [±¤°í]ÀÌ·¸°Ô ÀÛÀº PCµµ Àֳ׿©........
Comments: To: sas-l@uga.cc.uga.edu
Content-Type: text/html; charset="ks_c_5601-1987"

<html> <head> <title>PC°¡ ÀÌ·¸°Ô ÀÛÀ»¼ö ÀÖ´Ù´Ï...</title> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr"> <style type="text/css"> TD {font-size:9pt} font {font-size:9pt} TH {font-size:9pt} <!-- a { font-family: ""; text-decoration: none} --> </style> <style type="text/css"> DIV.clTopMenu{position:absolute; width:115; height:150; clip:rect(0,101,14,0); visibility:hidden; z-index:31; layer-background-color:#EEEEEE; background-color:#ffffff} DIV.clTopMenuBottom{position:absolute; width:115; height:150; clip:rect(0,101,3,0); top:11; layer-background-color:#CECFCE; background-color:#ffffff; z-index:2} DIV.clTopMenuText{position:absolute; width:200; left:5; top:35; font-family:arial,helvetica; font-size:11px; background-color:#f7f7f7; z-index:1} </style> <script type="text/javascript" language="JavaScript"> /******************************************************************************** Copyright (C) 1999 Thomas Brattli This script is made by and copyrighted to Thomas Brattli at www.bratta.com Visit for more great scripts. This may be used freely as long as this msg is intact! I will also appriciate any links you could give me. ********************************************************************************/ //Default browsercheck, added to all scripts! function checkBrowser(){ this.ver=navigator.appVersion this.dom=document.getElementById?1:0 this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; this.ie4=(document.all && !this.dom)?1:0; this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0; this.ns4=(document.layers && !this.dom)?1:0; this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5) return this } bw=new checkBrowser() /******************************************************************************** If you want to change the appearens on the text, background-colors, size or anything do that in the style tag above. This menu might not be as easy to adapt to your own site, but please play around with it before you mail me for help... ****************************************************************************/ /*************************************************************************** Variables to set. ****************************************************************************/ //There are 2 ways these menus can be placed // 0 = column // 1 = row nPlace=0 //How many menus do you have? (remember to copy and add divs in the body if you add menus) var nNumberOfMenus=0 var nMwidth=200 //The width on the menus (set the width in the stylesheet as well) var nPxbetween=20 //Pixels between the menus var nFromleft=400//The first menus left position var nFromtop=167//The top position of the menus var nBgcolor='#ffffff' //The bgColor of the bottom mouseover div var nBgcolorchangeto='#ffffff' //The bgColor to change to var nImageheight=26 //The position the mouseover line div will stop at when going up! /*************************************************************************** You shouldn't have to change anything below this ****************************************************************************/ //Object constructor function makeNewsMenu(obj,nest){ nest=(!nest) ? '':'document.'+nest+'.' this.css=bw.dom? document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+"document.layers." +obj):0; this.evnt=bw.dom? document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+"document.layers." +obj):0; this.scrollHeight=bw.ns4?this.css.document.height:this.evnt.offsetHeight this.moveIt=b_moveIt;this.bgChange=b_bgChange; this.slideUp=b_slideUp; this.slideDown=b_slideDown; this.clipTo=b_clipTo; this.obj = obj + "Object"; eval(this.obj + "=this") } //Objects methods function b_moveIt(x,y){this.x=x; this.y=y; this.css.left=this.x; this.css.top=this.y} function b_bgChange(color){if(bw.dom || bw.ie4) this.css.backgroundColor=color; else this.css.bgColor=color} function b_clipTo(t,r,b,l){ if(bw.ns4){this.css.clip.top=t; this.css.clip.right=r; this.css.clip.bottom=b; this.css.clip.left=l }else this.css.clip="rect("+t+","+r+","+b+","+l+")"; } function b_slideUp(ystop,moveby,speed,fn,wh){ if(!this.slideactive){ if(this.y>ystop){ this.moveIt(this.x,this.y-5); eval(wh) setTimeout(this.obj+".slideUp("+ystop+","+moveby+","+speed+",'"+fn+"','"+wh+"')",speed) }else{ this.slideactive=false; this.moveIt(0,ystop); eval(fn) } } } function b_slideDown(ystop,moveby,speed,fn,wh){ if(!this.slideactive){ if(this.y<ystop){ this.moveIt(this.x,this.y+5); eval(wh) setTimeout(this.obj+".slideDown("+ystop+","+moveby+","+speed+",'"+fn+"','"+wh+"')",speed) }else{ this.slideactive=false; this.moveIt(0,ystop); eval(fn) } } } //Initiating the page, making cross-browser objects function newsMenuInit(){ oTopMenu=new Array() zindex=10 for(i=0;i<=nNumberOfMenus;i++){ oTopMenu[i]=new Array() oTopMenu[i][0]=new makeNewsMenu('divTopMenu'+i) oTopMenu[i][1]=new makeNewsMenu('divTopMenuBottom'+i,'divTopMenu'+i) oTopMenu[i][2]=new makeNewsMenu('divTopMenuText'+i,'divTopMenu'+i) oTopMenu[i][1].moveIt(0,nImageheight) oTopMenu[i][0].clipTo(0,nMwidth,nImageheight+3,0) if(!nPlace) oTopMenu[i][0].moveIt(i*nMwidth+nFromleft+(i*nPxbetween),nFromtop) else{ oTopMenu[i][0].moveIt(nFromleft,i*nImageheight+nFromtop+(i*nPxbetween)) oTopMenu[i][0].css.zIndex=zindex-- } oTopMenu[i][0].css.visibility="visible" } } //Moves the menu function topMenu(num){ if(oTopMenu[num][1].y==nImageheight) oTopMenu[num][1].slideDown(oTopMenu[num][2].scrollHeight+20,10,40,'oTopMenu['+num+'][0].clipTo(0,nMwidth,oTopMenu['+num+'][1].y+3,0)','oTopMenu['+num+'][0].clipTo(0,nMwidth,oTopMenu['+num+'][1].y+3,0)') else if(oTopMenu[num][1].y==oTopMenu[num][2].scrollHeight+20) oTopMenu[num][1].slideUp(nImageheight,10,40,'oTopMenu['+num+'][0].clipTo(0,nMwidth,oTopMenu['+num+'][1].y+3,0)','oTopMenu['+num+'][0].clipTo(0,nMwidth,oTopMenu['+num+'][1].y+3,0)') } //Changes background onmouseover function menuOver(num){oTopMenu[num][1].bgChange(nBgcolorchangeto)} function menuOut(num){oTopMenu[num][1].bgChange(nBgcolor)} //Calls the init function onload onload=newsMenuInit; </script> <script language="JavaScript"> <!-- <!-- function MM_reloadPage(init) { //reloads the window if Nav4 resized if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) { document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }} else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload(); } MM_reloadPage(true); // --> function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } //--> </script> </head> <body bgcolor="#FFFFFF" text="#000000" background="http://www.com-sale.co.kr/notice/image/back.gif"> <div id="Layer1" style="position:absolute; width:400; height:218px; z-index:32; visibility: hidden"> <div id="divTopMenu0" class="clTopMenu" style="width: 141px; height: 200px"><a href="" onMouseOver="menuOver(0)" onMouseOut="menuOut(0)" onClick="topMenu(0); if(bw.dom || bw.ie4)this.blur(); return false"><img src="http://www.com-sale.co.kr/notice/image/menu.gif" width=115 height=26 alt="" border=0 align="top"></a> <div id="divTopMenuText0" class="clTopMenuText"> Standard PC Functions<br> <font size =""1" color="#D6497B">size : 193m x 163m x 29m</font><br> cpu : via Cyrix CIII 800MHz<br> Chipset : via ple vt8601A, via vt82c686b<br> BIOS : AWARD BIOS<br> Memory : One SODIMM socket 128M<br> Enhanced IDE : IBM 20G<br> USB : Two USB connector<br> LAN : 100MB bps<br> ½ºÅ×·¹¿À »ç¿îµå, ¸¶ÀÌÅ©<br> <br> </div> <div id="divTopMenuBottom0" class="clTopMenuBottom"></div> </div> </div> <table width="632" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td width="168"><img src="http://www.com-sale.co.kr/notice/image/event.gif" width="168" height="101" usemap="#Map3" border="0"></td> <td width="146"><img src="http://www.com-sale.co.kr/notice/image/event1.gif" width="146" height="101"></td> <td width="160"><img src="http://www.com-sale.co.kr/notice/image/event2.gif" width="160" height="101"></td> <td width="10"><img src="http://www.com-sale.co.kr/notice/image/event3.gif" width="158" height="101" usemap="#Map" border="0"></td> </tr> <tr> <td width="168"><img src="http://www.com-sale.co.kr/notice/image/event4.gif" width="168" height="100"></td> <td width="146"><img src="http://www.com-sale.co.kr/notice/image/event5.gif" width="146" height="100"></td> <td colspan="2" background="http://www.com-sale.co.kr/notice/image/event8.gif"> <br> <br> <br> <br> </td> </tr> <tr > <td colspan="4" background="http://www.com-sale.co.kr/notice/image/back1.gif" height="129"> <table width="629" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td width="161"><img src="http://www.com-sale.co.kr/notice/image/pic.gif" width="161" height="209"></td> <td width="167"><img src="http://www.com-sale.co.kr/notice/image/pic1.gif" width="167" height="209" usemap="#Map2" border="0"></td> <td colspan="2" background="http://www.com-sale.co.kr/notice/image/pic2.gif"><br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <table width="243" border="0" cellspacing="1" cellpadding="1" align="center"> <tr> <td><font color="#313031">±â¾÷¿ë, °¡Á¤¿ë, ±³À°¿ë, Thin Client, POS¿ë</font></td> </tr> <tr> <td><font color="#313031">´ë°í°´ â°í¾÷¹«¿ë, ÀÎÅÍ³Ý Àü¿ë PC</font></td> </tr> </table> </td> </tr> <tr> <td colspan="2" height="53"> <table width="265" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td> <div align="right"><img src="http://www.com-sale.co.kr/notice/image/pic4.gif" width="211" height="129"></div> </td> </tr> </table> </td> <td colspan="2" height="53"> <table width="223" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <div align="center"><img src="http://www.com-sale.co.kr/notice/image/pic3.gif" width="186" height="138"></div> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr bgcolor="#f7f7f7"> <td colspan="4" height="83"> <div align="center"> <table width="580" border="0" cellspacing="2" cellpadding="2"> <tr> <td> <div align="center"><font color="#313031">±ÍÇÏÀÇ ½Â¶ô¾øÀÌ È«º¸¼º ÀüÀÚ ¿ìÆíÀ» º¸³»°Ô µÈ Á¡ Á¤ÁßÈ÷ »ç°ú µå¸³´Ï´Ù.</font></div> </td> </tr> <tr> <td> <div align="center"><font color="#313031">Á¤º¸Åë½Å¸ÁÀÌ¿ëÃËÁø¹ý ±ÔÁ¤À» ÁؼöÇÏ¿© ±¤°í¸ÞÀÏÀÓÀ» Ç¥½ÃÇÏ¿´À¸¸ç, ¼ö½Å°ÅºÎ ÀåÄ¡¸¦ ¸¶·ÃÇϰí ÀÖ½À´Ï´Ù.</font></div> </td> </tr> <tr> <td> <div align="center"><font color="#313031">ÀúÈñ´Â ±ÍÇÏÀÇ ÀüÀÚ¿ìÆí ÁÖ¼Ò ¿Ü ¾î¶°ÇÑ °³ÀÎÁ¤º¸µµ °¡Áö°í ÀÖÁö ¾ÊÀ¸¹Ç·Î ¾È½ÉÇϽñ⠹ٶø´Ï´Ù.</font></div> </td> </tr> <tr> <td> <div align="center"><font color="#313031">¼ö½ÅÀ» ¿øÄ¡ ¾ÊÀ¸½Ã¸é ¼ö½Å°ÅºÎ¸¦ Ŭ¸¯ÇØ Áֽʽÿä.</font></div> </td> </tr> <tr> <td> <div align="center"><font color="#313031">±âŸ ¹®ÀÇ »çÇ×ÀÌ ÀÖÀ¸½Ã¸é<a href="mailto:top@com-sale.co.kr"> <font color="#3165CE">top@com-sale.co.kr</font></a>À¸·Î ¸ÞÀÏÀ» º¸³»Áֽʽÿä. </font></div> </td> </tr> </table> </div> </td> </tr> <tr> <td colspan="4" background="http://www.com-sale.co.kr/notice/image/back1.gif" height="3"> <div align="center"><img src="http://www.com-sale.co.kr/notice/image/line.gif" width="613" height="1"></div> </td> </tr> <tr bgcolor="#f7f7f7"> <td colspan="4" height="24"> <div align="center"><font color="#3165CE">Copyright(c)</font> 1998-2002 Com-sale.co.,ltd. All rights reserved. </div> </td> </tr> </table> <map name="Map"> <area shape="rect" coords="51,7,153,33" href="http://www.com-sale.co.kr/notice/add_list.asp?u_email=SAS-L@UGA.CC.UGA.EDU" target="_self"> </map> <map name="Map2"> <area shape="rect" coords="72,156,145,177" href="#" onClick="MM_openBrWindow('http://www.com-sale.co.kr/notice/open.htm','','width=300,height=293')"> </map> <map name="Map3"> <area shape="rect" coords="6,4,139,39" href="http://www.com-sale.co.kr" target="_self"> </map> </body> </html>


Back to: Top of message | Previous page | Main SAS-L page