/*--------------------------------------------------------------------------------------------------*/
/* File Name            : Mamu.js */
/* File Type             : Include type  (js) */
/* Discription           : Top Menu  */

/* Author                 : Eunha Lee- Korea Software Lab. co., ltd.*/
/* Date                   : 2005 / 2 / 17 */
/* Last update date  : 2005 / 2 / 17 */
/*--------------------------------------------------------------------------------------------------*/

var msg = "              Tossware ERP             Tossware EP             Tossware ºÐ¾ç             Tossware Ç°Áú°ü¸®";
var espaceur = " ";
var pos = 0;
var showmsg = true;
function ScrollMessage() {
        if (!showmsg) {
        window.setTimeout("ScrollMessage()",1500);
        showmsg = true;
        return;
    }
    window.status = msg.substring(pos, msg.length) + espaceur + msg.substring(0, pos);
    pos++;
    if (pos > msg.length) pos = 0;
        window.setTimeout("ScrollMessage()",200);
}

ScrollMessage();

function LinkMessage(text) {
    showmsg = false;
    window.status = text;
}

if (document.layers)
document.captureEvents(Event.mouseover | Event.mouseout)
document.onmouseover=clearStatus
document.onmouseout=resetStatus

 
function clearStatus () {
    window.status = ' ';
    return true;
}

function resetStatus () {
    
    window.status = window.ScrollMessage;
    return true;
}


str  = '' 

str += '<table width="899" border="0" cellspacing="0" cellpadding="0">' 

str += '   <tr><td height="4" bgcolor="092F55"></td></tr>'

str += '   <tr><td height="16" bgcolor="2D5883" class="site"><a href="../index.asp">Home</a>&nbsp;&nbsp; l &nbsp;&nbsp;<a href="../community/community_4.htm">Sitemap</a> &nbsp;&nbsp;l &nbsp;&nbsp;<a href="../admin/login.asp">Admin</a>&nbsp;&nbsp;l &nbsp;&nbsp;<a href="http://www.softlab.co.kr:8000/index.asp" target="_blank">Intranet</a></td></tr>' 

str += '   <tr><td height="50">'
str += '				<table width="899" border="0" cellspacing="0" cellpadding="0">'
str += '					<tr>'
str += '					  <td><a href="../index.asp"><img src="../img/logo.gif" width="315" height="50" border="0"></a></td>'
str += '					  <td><a href="../business/business1.htm"><img src="../img/munu01.gif" width="96" height="50" border="0"></a></td>'
str += '					  <td><a href="../solution/solution1_1.htm"><img src="../img/menu02.gif" width="98" height="50" border="0"></a></td>'
str += '					  <td><a href="../construction/construction1.htm"><img src="../img/menu03.gif" width="98" height="50" border="0"></a></td>'
str += '					  <td><a href="../news/news_1.asp"><img src="../img/menu04.gif" width="103" height="50" border="0"></a></td>'
str += '					  <td><a href="../community/community_2.asp"><img src="../img/menu05.gif" width="93" height="50" border="0"></a></td>'
str += '					  <td><a href="../company/company1.htm"><img src="../img/menu06.gif" width="96" height="50" border="0"></a></td>'
str += '					</tr>'
str += '				  </table>'
str += '	</td></tr>'

str += '</table>' 


  

document.write( str ); 


