var count=0;
 var content=
"Login:guest<br>Password:Not Required<br>"+
"<br>Connecting to the server ...................................[OK]"+
"<br>Authenticating account...................................[OK]"+
"<br> "+
"<br>Open the links below by Pressing the keyboard with the number."+
"<br>Clicking them directly is also a good idea."+
"<br> "+
"<br><a href=http://pudd.cc/dook>(1)DOOK is my personal microblog containing 140-words from fanfou and twitter</a>"+
"<br><a href=http://zachuh.blogbus.com>(2)NEGATIVE TRANSFORMATION my blog in Blogbus.com (since 2008)</a>"+
"<br><a href=http://www.douban.com/people/kndanny>(3)DOUBAN my lists of books, music and movies</a>"+
"<br><a href=http://zh.wikipedia.org/zh-cn/User:Puddding>(4)WIKIPEDIA my user page in wikipedia offering the entries I wrote</a>"+
"<br><a href=http://www.ifan.co.tv/wiki/下供供供>(5)FANFOUPEDIA my personal entry in fanfoupedia </a>"+
"<br><a href=http://wakoopa.com/puddding>(6)WAKOOPA tells you my favorite softwares and websites</a>"+
"<br><a href=https://twitter.com/puddding>(7)TWITTER you can always find me there(blocked)</a>"+
"<br><br>"+"Twitter clients"+
"<br>"+"<a href=http://pudd.cc/ra>(8)Rabr for PC</a>"+
"<br>"+"<a href=http://pudd.cc/da>(9)Dabr for mobile</a>"+
"<br>"+""+
"<br>"+"<a href=http://pudd.cc/m.html>(0)Mobile view</a>"+
"<br>"+"PRESS a number or CLICK the link <img src=./c.gif>"


 function type_write(){
  if(count<=content.length){
   document.getElementById('reply_comment').innerHTML=content.substring(0,count);
   count++;
   setTimeout("type_write()",10);
  }
 }

document.onkeydown = pageEvent; 
function pageEvent(evt){ 
evt = evt ||window.event; 
var key=evt.which||evt.keyCode; 
if (key == 49) window.open("http://pudd.cc/dook","_blank");
if (key == 50) window.open("http://zachuh.blogbus.com" ,"_blank"); 
if (key == 51) window.open("http://www.douban.com/people/kndanny","_blank");
if (key == 52) window.open("http://zh.wikipedia.org/zh-cn/User:Puddding" ,"_blank"); 
if (key == 53) window.open("http://www.ifan.co.tv/wiki/下供供供","_blank");
if (key == 54) window.open("http://wakoopa.com/puddding" ,"_blank"); 
if (key == 55) window.open("https://twitter.com/puddding","_blank");
if (key == 56) window.open("http://pudd.cc/ra" ,"_blank"); 
if (key == 57) window.open("http://pudd.cc/da","_blank");
if (key == 48) window.open("http://pudd.cc/m.html","_blank");
}; 

