mao na ni
</style>
<title> Layout by Whip �</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)">
</head>
<style type="text/css">
BODY {
SCROLLBAR-FACE-COLOR: #000000;
SCROLLBAR-HIGHLIGHT-COLOR: #000000;
SCROLLBAR-SHADOW-COLOR: #000000;
SCROLLBAR-3DLIGHT-COLOR: #000000;
SCROLLBAR-ARROW-COLOR: #FFFFFF;
SCROLLBAR-TRACK-COLOR: #000000;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
cursor: url("http://www.freewebs.com/elvolution/misc/elvocursor.cur"),default;
}
td, tr, div {
FONT-SIZE: 10px;
COLOR: #FFFFFF;
FONT-FAMILY: Tahoma;}
a, a:link, a:visited, a:active {
color:#FFFFFF; font-weight: normal;
text-decoration: none; border-bottom:0px;
font-style: normal; }
a:hover { color:#FFFFFF;
font-weight: bold; text-decoration: none;
border-bottom:0px; font-style: normal; }
</style>
<script type="text/javascript">
function clickToggle(target) {
obj=(document.all) ? document.all[target] : document.getElementById(target);
obj.style.display=(obj.style.display=='none') ? '' : 'none';
}
</script>
<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 type="text/javascript">
/*
Cursor scroller script- By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit [url]http://www.dynamicdrive.com[/url]
*/
var dismissafter=9999
function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
var initialvisible=0
if (document.all)
document.write('<img src="http://i36.photobucket.com/albums/e25/bajoyski3/sexy.gif" width=64 height=89 id="curscroll" style="filter:alpha(opacity=100,finishopacity=0,style=2);position:absolute;border:none;visibility:hidden">')
function followcursor(){
//move cursor function for IE
if (initialvisible==0){
curscroll.style.visibility="visible"
initialvisible=1
}
curscroll.style.left=ietruebody().scrollLeft+event.clientX+10
curscroll.style.top=ietruebody().scrollTop+event.clientY+10
}
function dismissmessage(){
curscroll.style.visibility="hidden"
}
if (document.all){
document.onmousemove=followcursor
document.ondblclick=dismissmessage
if (dismissafter!=0)
setTimeout("dismissmessage()",dismissafter*1000)
}
</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 [url]http://www.geocities.com/SiliconValley/9000/[/url]
// For more information contact Tomer or Yehuda Shiran <
[email protected]>
// 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 design"
ar[2] = "Pls leave a message on the Chatterbox"
ar[3] = "Don't forget to give me a testi Thanx!"
// 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>
<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- ImageReady Slices (audi.psd) -->
<img src="http://i36.photobucket.com/albums/e25/bajoyski3/audi.gif" width="985" height="800" border="0" alt="" usemap="#audi_Map">
<map name="audi_Map">
<!------------EDIT USERID HERE---------------------------------------------->
<area shape="rect" alt="" coords="658,40,748,65" href="http://www.friendster.com/friends.php?uid=YOURUSERID">
<area shape="rect" alt="" coords="585,48,645,68" href="http://userblogname.blogs.friendster.com/my_blog/">
<area shape="rect" alt="" coords="464,46,566,68" href="http://www.friendster.com/bookmarks.php?action=add&uid=YOURUSERID">
<area shape="rect" alt="" coords="350,47,443,68" href="http://www.friendster.com/sendmessage.php?uid=YOURUSERID&action=sendsmile">
<area shape="rect" alt="" coords="219,48,321,65" href="http://www.friendster.com/testimonials.php?action=add&uid=YOURUSERID">
<area shape="rect" alt="" coords="84,46,202,68" href="http://www.friendster.com/sendmessage.php?uid=YOURUSERID">
<area shape="rect" alt="" coords="0,46,72,68" href="http://www.friendster.com/addfriendrequest.php?uid=YOURUSERID">
<!------------ end ---------------------------------------------->
<area shape="rect" alt="" coords="479,10,561,33" href="http://www.friendster.com/index.php?logout=1">
<area shape="rect" alt="" coords="350,10,436,31" href="http://www.friendster.com/friends.php">
<area shape="rect" alt="" coords="219,0,316,33" href="http://www.friendster.com/messages.php">
<area shape="rect" alt="" coords="139,10,201,32" href="http://www.friendster.com/user.php">
<area shape="rect" alt="" coords="66,10,113,33" href="http://www.friendster.com/home.php">
</map>
<!-- End ImageReady Slices -->
</body>
<!------------ CHANGE INFO ---------------------------------------------->
<div style="position:absolute; left:23px; top:106px; width:337px; height:256px; z-index:0; overflow: auto;"><center><br><br>
<marquee behavior=scroll scrollamount=5 height="130">
<a href="http://www.friendster.com/USERID"><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
<a href="http://www.friendster.com/USERID"><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
<a href="http://www.friendster.com/USERID"><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
<a href="http://www.friendster.com/USERID"><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
<a href="http://www.friendster.com/USERID" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
<a href="http://www.friendster.com/USERID" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
<a href="http://www.friendster.com/USERID" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
<a href="http://www.friendster.com/USERID" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
<a href="http://www.friendster.com/USERID" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" alt="hello"></a>
</marquee>
<hr>
Name : EDIT this part <br>
Age : EDIT this part<br>
Gender : EDIT this part <br>
Status : EDIT this part <br>
Hometown : EDIT this part <br>
Location : EDIT this part <br>
Schools : EDIT this part <br>
Hobbies : EDIT this part <br>
BirthDate : EDIT this part <br>
Affiliates : EDIT this part <br>
Religion : EDIT this part <br>
<br><br>
<a href = 'ymsgr:sendim?<B>YMUSERNAME</B>'>
<img src="http://opi.yahoo.com/online?u=<B>YMUSERNAME</B>&m=g&t=<B>1</B>" border=0></a><br>
</center>
</div>
<!------------ end ---------------------------------------------->
<!------------CHANGE URL OF THE MP3 IF YOU LIKE---------------------------------------------->
<div style="position:absolute; overflow:auto; left:751px; top:383px; width:221px; height:249px; z-index:0">
<center><embed src="http://www.myflashfetish.com/fetish-mp3player.swf?myid=372267&mycolor=0xffffff&mycolor2=0x333366&mycolor3=0xffffff& autoplay=true&rand=1" menu="false" quality="best" scale="noscale" bgcolor="#ffffff" wmode="transparent" width="221" height="249" name="MyFlashFetish.com" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></center>
</div>
<!------------ end ---------------------------------------------->
<!------------ insert chatbox url here ---------------------------------------------->
<div style="position:absolute; left:754px; top:45px; width:221px; height:221px; z-index:0; overflow: HIDDEN;">
<!-- BEGIN CBOX - [url]http://www.cbox.ws[/url] -->
<table border="0" cellpadding="0" cellspacing="0" summary="cbox tagboard" align="center">
<tr><td align="center">
<iframe frameborder="0" width="221" height="221" src="CBOXURLHERE" marginheight="2" marginwidth="0" scrolling="auto" allowtransparency="yes" name="seebox" style="border: 0px solid;" id="seebox"></iframe><br>
</td></tr>
</table>
</div>
<div style="padding-right:10;overflow:hidden;height:55;width:217;position:absolute;left:753;top:272">
<table border="0" cellpadding="0" cellspacing="0" summary="cbox tagboard" align="center">
<tr>
<td align="center">
<div id="cboxap"></div>
</td></tr>
</table>
</div>
<!-- END CBOX -->
<!------------ end ---------------------------------------------->
<!------------ insert CBOX ID AND TAG BELOW ---------------------------------------------->
<script language="javascript">
capboxid=CBOXID;
capboxtag=CBOXTAG;
capmodule="pst";
cap="activate";
</script>
<!------------ end ---------------------------------------------->
<!------------ insert who viewed chatbox url here ---------------------------------------------->
<div style="position:absolute; overflow:hidden; left:199px; top:491px; width:161px; height:306px; z-index:0">
<!-- BEGIN CBOX - [url]http://www.cbox.ws[/url] -->
<iframe frameborder="0" width="161" height="306" src="WHOVIEWEDCBOXURL" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmainche" style="border: 0px solid;" id="cboxmainche"></iframe><br>
<!-- END CBOX -->
</div>
<!------------ end ---------------------------------------------->
<!------------ insert WHO VIEWED CBOX ID AND TAG BELOW ---------------------------------------------->
<script language="javascript">
boxid= BOXID;
boxtag=BOXTAG;
wvcbox="yes";
wvcboxmodule="pst";
</script>
<div id="wvcboxel" style="display:none"></div>
<!------------ end ---------------------------------------------->
<!------------EDIT USERNAME HERE---------------------------------------------->
<div style="position:absolute; overflow:auto; left:68px; top:771px; width:94px; height:39px; z-index:0">
<img src="http://www.easycounter.com/counter.php?USERNAME"border="0" alt="Web Counter"></div>
</div>
<!------------ end ---------------------------------------------->
<!------------DON'T CHANGE ANYTHING HERE---------------------------------------------->
<div style="direction:ltr;background-color:transparent;width:346; height:364;
border:none; overflow:auto; font-weight:bold; color:#000000; text-align:left;
position:absolute; padding-right:5;padding-top:5;padding-left:5;padding-bottom:5; z-index:2;top:109;left:386">
<script language="javascript">
module6="yes";
</script>
</div>
<script language="javascript">
starget="yes";
stargetvisit=5;
</script>
<div id="stargetid" style="display:none"></div>
<script language=javascript>
FAlink="yes";
</script>
<div id=FAlinkid></div>
<div style="position:absolute; overflow:auto; left:368px; top:766px; width:506px; height:34px; z-index:0">
<span class="style22"><a href="http://www.friendster.com/info/index.php?statpos=footer"><center>
About Us</a> |
<a href="http://www.friendster.com/info/contacts.php?statpos=footer">
Contact Us</a> |
<a href="http://www.friendster.com/events.php?statpos=footer">
Events</a> |
<a href="http://www.friendster.com/affiliate.php?statpos=footer">
Promote My Profile</a> |
<a href="http://www.friendster.com/custhelp.php?statpos=footer">
Help</a> |
<a href="http://www.friendster.com/info/tos.php?statpos=footer">
Terms of Service</a> |
<a href="http://www.friendster.com/info/privacy.php?statpos=footer">
Privacy Policy</a><br>
Copyright � 2002-2006 Friendster, Inc. All rights reserved. Patent Pending.</span></center>
</div>
</html>