ÿþ<html> <head> <SCRIPT LANGUAGE="JavaScript"> <!-- var text=" I am iman <BR> \ I am an individual iPhone application developer in HK."; var delay=50; var currentChar=1; var destination="[none]"; function type() { //if (document.all) { var dest=document.getElementById(destination); if (dest)// && dest.innerHTML) { dest.innerHTML=text.substr(0, currentChar); currentChar++; if (currentChar>text.length) { currentChar=1; setTimeout("type()", 2000); } else { setTimeout("type()", delay); } } } } function startTyping(textParam, delayParam, destinationParam) { text=textParam; delay=delayParam; currentChar=1; destination=destinationParam; type(); } //--> </SCRIPT> </head> <body topmargin="0" leftmargin="0" > <table width=100% height="500" cellpadding="0" cellspacing="0"> <tr> <td background="./Images/TopBar_img001.jpg" height="32" valign="middle" > <img src="./Images/Space.png"><a href="index.html"><img src="./Images/Tital001.png" border="0"></a> <img src="./Images/Space.png"><a href="product.html"><img src="./Images/Tital002.PNG" border="0"></a> </td> </tr> <tr> <td valign="top"> <center> <table cellspacing="10"> <tr> <td> <img src="./Images/WhatWeDO_Img001.png" border="0"> <div id=layer1 style="position:relative; top:-200; left:120; width:400; height:100; z-index:1; padding:5px;"> ... </div> </td> </tr> </table> <center> </td> </tr> <tr> <td valign="bottom"> <center> ©2009 iMan </center> </td> </tr> </table> <SCRIPT LANGUAGE="JavaScript"> <!-- javascript:startTyping(text, 50, "layer1"); //--> </SCRIPT> </body> </html>