
<html>
<head>
<title> Welcome To your name's Assassin Cross Legacy~ </title>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<meta http-equiv="Page-Enter" content="BlendTrans(Duration=1.5)">
<meta http-equiv="Site-Exit" content="BlendTrans(Duration=1.5)">
<style type="text/css">
BODY {
SCROLLBAR-FACE-COLOR: #000000;
SCROLLBAR-HIGHLIGHT-COLOR: #343434;
SCROLLBAR-SHADOW-COLOR: #000000;
SCROLLBAR-3DLIGHT-COLOR: #343434;
SCROLLBAR-ARROW-COLOR: #4A0000;
SCROLLBAR-TRACK-COLOR: #250000;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
FONT-SIZE: 10px;
COLOR: #000000;
FONT-FAMILY: Tahoma;}
a, a:link, a:visited, a:active { font-size:10px;color:#ffffff;
font-weight: normal; text-decoration: none; border-bottom:0px; font-style: normal; }
a:hover { font-size:10px;background-color:#000000;color:#ffffff;
font-weight: bold; text-decoration: none; border-bottom:0px; font-style: normal; }
div {SCROLLBAR-FACE-COLOR: #000000;
SCROLLBAR-HIGHLIGHT-COLOR: #343434;
SCROLLBAR-SHADOW-COLOR: #000000;
SCROLLBAR-3DLIGHT-COLOR: #343434;
SCROLLBAR-ARROW-COLOR: #4A0000;
SCROLLBAR-TRACK-COLOR: #250000;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
padding-right:3;padding-top:3"}
</style>
<script language="javascript">
//
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu() {
event.cancelBubble = true, event.returnValue = false;
return false;
}
function norightclick(e) {
if (window.Event) {
if (e.which == 2 || e.which == 3) return false;
}
else if (event.button == 2 || event.button == 3) {
event.cancelBubble = true, event.returnValue = false;
return false;
}
}
if (document.layers)
document.captureEvents(Event.MOUSEDOWN);
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
document.onmouseup = norightclick;
//-->
</script>
<script language="javascript">
var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1
var title=document.title
var leng=title.length
var start=1
function titlemove() {
titl=title.substring(start, leng) + title.substring(0, start)
document.title=titl
start++
if (start==leng+1) {
start=0
if (repeat==0)
return
}
setTimeout("titlemove()",140)
}
if (document.title)
titlemove()</script>
<script language="javascript">
<!--// Copyright 1996 - Tomer and Yehuda Shiran
// This example will appear in our forthcoming book on JavaScript.
// Feel free to "steal" this code provided that you leave this notice as is.
// Additional examples from the book can be found at
http://www.geocities.com/SiliconValley/9000/
// For more information contact Tomer or Yehuda Shiran <yshiran@iil.intel.com>
// set speed of banner (pause in milliseconds between addition of new character)
var speed = 10
// decrease value to increase speed (must be positive)
// set pause between completion of message and beginning of following message
var pause = 1500
// increase value to increase pause
// set initial values
var timerID = null
var bannerRunning = false
// create array
var ar = new Array()
// assign the strings to the array's elements
ar[0] = "Welcome to my Friendster Profile"
ar[1] = "I hope you like my profile"
ar[2] = "Please leave a message on the Chatbox"
ar[3] = "Don't forget to give me a testi Thanks!"
ar[3] = "add me up"
// assign index of current message
var message = 0
// empty string initialization
var state = ""
// no value is currently being displayed
clearState()
// stop the banner if it is currently running
function stopBanner() {
// if banner is currently running
if (bannerRunning)
// stop the banner
clearTimeout(timerID)
// timer is now stopped
timerRunning = false
}
// start the banner
function startBanner() {
// make sure the banner is stopped
stopBanner()
// start the banner from the current position
showBanner()
}
// assign state a string of "0" characters of the length of the current message
function clearState() {
// initialize to empty string
state = ""
// create string of same length containing 0 digits
for (var i = 0; i < ar[message].length; ++i) {
state += "0"
}
}
// display the current message
function showBanner() {
// if the current message is done
if (getString()) {
// increment message
message++
// if new message is out of range wrap around to first message
if (ar.length <= message)
message = 0
// new message is first displayed as empty string
clearState()
// display next character after pause milliseconds
timerID = setTimeout("showBanner()", pause)
}
else {
// initialize to empty string
var str = ""
// built string to be displayed (only character selected thus far
are displayed)
for (var j = 0; j < state.length; ++j) {
str += (state.charAt(j) == "1") ? ar[message].charAt(j) : " "
}
// partial string is placed in status bar
window.status = str
// add another character after speed milliseconds
timerID = setTimeout("showBanner()", speed)
}
}
function getString() {
// set variable to true (it will stay true unless proven otherwise)
var full = true
// set variable to false if a free space is found in string (a not-displayed
char)
for (var j = 0; j < state.length; ++j) {
// if character at index j of current message has not been
placed in displayed string
if (state.charAt(j) == 0)
full = false
}
// return true immediately if no space found (avoid infinitive loop later)
if (full) return true
// search for random until free space found (braoken up via break
statement)
while (1) {
// a random number (between 0 and state.length - 1 ==
message.length - 1)
var num = getRandom(ar[message].length)
// if free space found break infinitive loop
if (state.charAt(num) == "0")
break
}
// replace the 0 character with 1 character at place found
state = state.substring(0, num) + "1" + state.substring(num + 1,
state.length)
// return false because the string was not full (free space was found)
return false
}
function getRandom(max) {
// create instance of current date
var now = new Date()
// create a random number (good generator)
var num = now.getTime() * now.getSeconds() * Math.random()
// cut random number to value between 0 and max - 1, inclusive
return num % max
}
startBanner()
// --></script>
<script language="javascript">
/*
Gradual-Highlight Image Script II-
By J. Mark Birenbaum (birenbau@ugrad.cs.ualberta.ca)
Permission granted to Dynamicdrive.com to feature script in archive
For full source to script, visit http://dynamicdrive.com
*/
nereidFadeObjects = new Object();
nereidFadeTimers = new Object();
/* object - image to be faded (actual object, not name);
* destop - destination transparency level (ie 80, for mostly solid)
* rate - time in milliseconds between trasparency changes (best under 100)
* delta - amount of change each time (ie 5, for 5% change in transparency)
*/
function nereidFade(object, destOp, rate, delta){
if (!document.all)
return
if (object != "[object]"){ //do this so I can take a string too
setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
return;
}
clearTimeout(nereidFadeTimers[object.sourceIndex]);
diff = destOp-object.filters.alpha.opacity;
direction = 1;
if (object.filters.alpha.opacity > destOp){
direction = -1;
}
delta=Math.min(direction*diff,delta);
object.filters.alpha.opacity+=direction*delta;
if (object.filters.alpha.opacity != destOp){
nereidFadeObjects[object.sourceIndex]=object;
nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObject
s["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
}
}
</script>
</head>
<body BGCOLOR="#000000" LEFTMARGIN="0" TOPMARGIN="0"
MARGINWIDTH="0" MARGINHEIGHT="0">
<!-- ImageReady Slices (2sinx.psd) -->
<img id="id2sinx" src="http://img169.imageshack.us/img169/5228/2sinxde9.jpg" width="1024" height="989" border="0" alt="" usemap="#id2sinx_Map" />
<map name="id2sinx_Map" id="id2sinx_Map">
<area shape="rect" alt="" coords="5,902,159,912" href="/info/privacy.php?statpos=footer" target="_self" />
<area shape="rect" alt="" coords="5,888,179,899" href="/info/tos.php?statpos=footer" target="_self" />
<area shape="rect" alt="" coords="5,877,62,886" href="/custhelp.php?statpos=footer" target="_self" />
<area shape="rect" alt="" coords="5,864,198,874" href="/affiliate.php?statpos=footer" target="_self" />
<area shape="rect" alt="" coords="5,852,82,861" href="//classifieds.friendster.com/us/ListAds/Event/" target="_self" />
<area shape="rect" alt="" coords="5,840,121,848" href="/info/contacts.php?statpos=footer" target="_self" />
<area shape="rect" alt="" coords="5,826,100,836" href="/info/index.php?statpos=footer" target="_self" />
<area shape="rect" alt="" coords="819,694,934,720" href="http://www.friendster.com/addfriendrequest.php?uid=friendster ID" target="_self" />
<area shape="rect" alt="" coords="819,659,971,682" href="http://www.friendster.com/testimonials.php?action=add&uid=friendster ID" target="_self" />
<area shape="rect" alt="" coords="819,625,939,651" href="http://www.friendster.com/sendmessage.php?uid=friendster ID" target="_self" />
<area shape="rect" alt="" coords="819,587,906,611" href="http://www.friendster.com/sendmessage.php?uid=friendster ID&action=sendsmile" target="_self" />
<area shape="rect" alt="" coords="815,486,926,509" href="http://www.friendster.com/friends.php?&uid=friendster ID" target="_self" />
<area shape="rect" alt="" coords="815,450,893,475" href="http://mib_lbs.blogs.friendster.com/my_blog/" target="_self" />
<area shape="rect" alt="" coords="815,414,976,437" href="http://www.friendster.com/testimonials.php?uid=friendster ID" target="_self" />
<area shape="rect" alt="" coords="815,376,918,402" href="http://www.friendster.com/viewphotos.php?uid=friendster ID" target="_self" />
<area shape="rect" alt="" coords="834,249,954,275" href="http://www.friendster.com/index.php?logout=1" target="_self" />
<area shape="rect" alt="" coords="834,211,944,237" href="http://www.friendster.com/friends.php" target="_self" />
<area shape="rect" alt="" coords="834,174,935,203" href="http://www.friendster.com/user.php" target="_self" />
<area shape="rect" alt="" coords="834,141,927,164" href="http://www.friendster.com/home.php" target="_self" />
</map>
<!-- End ImageReady Slices -->
<div
style="filter:alpha(opacity=100,finishopacity=20,style=1);background-color:transpa
rent;width:365; height:330;
border:0px outset #000000; overflow:auto; font-weight:bold; color:#000000;
text-align:left; z-index:10;
position:absolute; top:380; left:80">
type your information here, such as name, age, hobbies and etc. just make a <br> if you want to warp to next line.
</div>
<div
style="filter:alpha(opacity=100,finishopacity=100,style=1);padding-right:10;overflo
w:hidden;width:304; height:162; position:absolute;top:812; left:328">
<table border="0" cellpadding="0" cellspacing="0" summary="cbox tagboard"
align="center">
<tr>
<td align="center">
<iframe frameborder="0" width="304" height="162"
src="cbox message link"
marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes"
name="cboxmain" style="border: 0px solid;" id="cboxmain">
</iframe></td>
</tr>
</table>
</div>
<div
style="padding-right:10;overflow:hidden;height:100;width:193;position:absolute;left:691;top:842">
<table border="0" cellpadding="0" cellspacing="0" summary="cbox tagboard"
align="center" width="153">
<tr>
<td align="center" width="153">
<iframe frameborder="0" width="193" height="80"
src="cboc typing box link"
marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes"
name="cboxform" style="border: 0px solid; border-top: 0px;" id="cboxform">
</iframe></td>
</tr>
</table>
</div>
</b></font></b></font>
<embed style="position:absolute; left:3; top:-5; z-index:3" wmode="transparent"
src="http://four.fsphost.com/reiearth/snow.swf" quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="400" height="250"></embed>
</body>
</html>