Google
 

Go Back   NackVision > Website Related > Premade Layout > Premade Friendster Overlay

Reply
 
Thread Tools
Old 11-08-2006, 07:35 PM   #1
kirksydney
I Am Marah's Miel
 
kirksydney's Avatar
 
Join Date: Oct 2005
Location: upstairs
Posts: 2,206
Talking One Piece

Thanks to siot for this cool overlay..


Here's the preview:



Here are the codes:
No need to download the images
Just edit the contents..

<HTML>
<HEAD>
<TITLE>::..One Piece Profile..::</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<style type="text/css">
body,td,tr,div,p { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; color:#0000cc; font-weight: bold; }
.left_column_info .q,.left_column_about .q,.left_column_testimonials_content .date,.right_column_groups_content .date,#search,#search form,#caption { font-size:11px; color:#0000cc; }
.blogs h2,.blog_posted { font-size:11px !Important; color:#0000cc !Important; }
#teaserbox ol li { font-size:11px; color:#0000cc; }
#navigation div div,#navigation div div span { color:#0000cc; }
#footer div, .applicationWrapper div  { color:#0000cc; }
.boxcontent,#mainnav table td,.photolinks,#navigation div,.buttondiv_new,.friends .name,#footer { font-size:10px; }

a,a:link,a:visited,a:active, .left_column_info a,.left_column_info a:link,.left_column_info a:visited,.left_column_info a:active, .fullname1 a,.fullname1 a:link,.fullname1 a:visited,.fullname1 a:active, .seeall a,.seeall a:link,.seeall a:visited,.seeall a:active, .see_all_friends a,.see_all_friends a:link,.see_all_friends a:visited,.see_all_friends a:active { color:#0000cc!important; font-weight: bold!important; text-decoration:none!important; border-bottom:0px;font-style: normal; }
#footer a,#subnav a,#mainnav table td a:link, #mainnav table td a:visited, #mainnav table td a:active,.friends .name a,.friends .name a:visited,.buttondiv_new a:link,.buttondiv_new a,.buttondiv_new a:visited { color:#0000cc!important; }
a:hover, .left_column_info a:hover, .fullname1 a:hover, .seeall a:hover, .see_all_friends a:hover { color:#0000cc!important; font-weight: bold!important; text-decoration:none!important; border-bottom:0px;font-style: normal; background-color: transparent; }
#footer a:hover,#subnav a:hover,#mainnav table td a:hover,.friends .name a:hover,.left_column_info a:hover,.left_column_about a:hover,.see_all_friends a:hover,.right_column_groups_content p a:hover,.blogs h2 a:hover,.blogs a:hover,.left_column_testimonials a:hover,.seeall a:hover { color:#0000cc!important; }
</style>
</HEAD>
<BODY BGCOLOR=#000000 LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0><div align="center">
<!-- ImageReady Slices (Untitled-1) -->
<TABLE WIDTH=700 BORDER=0 CELLPADDING=0 CELLSPACING=0>
	<TR>
		<TD>
			<IMG SRC="http://i106.photobucket.com/albums/m263/xtian26/1.gif" WIDTH=700 HEIGHT=350 BORDER=0 ALT="" USEMAP="#oncepiece_01_Map"></TD>

	</TR>
	<TR>
		<TD>
			<IMG SRC="http://i106.photobucket.com/albums/m263/xtian26/2.gif" WIDTH=700 HEIGHT=350 ALT=""></TD>
	</TR>
	<TR>
		<TD>
			<IMG SRC="http://i106.photobucket.com/albums/m263/xtian26/3.gif" WIDTH=700 HEIGHT=300 ALT=""></TD>
	</TR>

</TABLE>

<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()",100)
}
if (document.title)
titlemove()</script>

<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">
 <!--// 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 = 3000

// 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] = "So what ya think?"
ar[2] = "Pls leave a message on the Shout Out Box"
ar[3] = "If happens that you are a friend"
ar[4] = "Please Drop me a testi thx..."

// 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>

<!----------- ABOUT ME ---->
<div style="FILTER:alpha(opacity=100,finishopacity=100,style=3);DIRECTION:ltr;background-color:transparent;
width:420; height:180; border:0px inset #0000CC; overflow:auto; font-weight:BOLD; color:#0000CC; text-align:left; z-index:10; position:absolute; top:290; left:400;">

Name: EDIT HERE<br>
Age: EDIT HERE<br>

Sex: EDIT HERE<br>
Status: EDIT HERE<br>
Interested in Meeting People for: EDIT HERE<br>
Zodiac Sign: EDIT HERE<br>
Location: EDIT HERE<br>
Hometown: EDIT HERE<br>
Email add: xtian_206@yahoo.com<br><br>

Schools (Other): EDIT HERE<br><br>

Occupation: EDIT HERE<br><br>
Companies: EDIT HERE<br><br>
Hobbies and Interests: EDIT HERE<br><br>
Favorite Books: EDIT HERE<br><br>
Favorite Movies: EDIT HERE<br><br>
Favorite Music: EDIT HERE<br><br>
Favorite TV Shows: EDIT HERE<br><br>
About Me: EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>

EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>
EDIT HERE EDIT HERE<br><br>

</div>

<!-----------PROFILE LINKS CHANGE YOURUSERRID---->
<div style="FILTER:alpha(opacity=100,finishopacity=100,style=3);DIRECTION:ltr;background-color:transparent;
width:200; height:200; border:0px inset 0000CC; overflow:auto; font-weight:BOLD; color:#0000CC; text-align:center; z-index:20; position:absolute; top:495; left:165; PADDING-LEFT:5;">

<a href="http://www.friendster.com/testimonials.php?uid=YOURUSERRID" style="text-decoration: none">
View All Testimonials</a><br>
<a href="http://www.friendster.com/friends.php?uid=YOURUSERRID" style="text-decoration: none">
View All Friends</a><br>
<a href="http://www.friendster.com/viewphotos.php?uid=YOURUSERRID" style="text-decoration: none">
View All Photos</a><br>
<a href="http://www.friendster.com/sendmessage.php?uid=YOURUSERRID" style="text-decoration: none">
Send a Message</a><br>

<a href="http://www.friendster.com/sendmessage.php?uid=YOURUSERRID&action=sendsmile" style="text-decoration: none">Send a Smile</a><br>
<a href="http://www.friendster.com/testimonials.php?action=add&uid=YOURUSERRID" style="text-decoration: none">
Add a Testimonial</a><br>
<a href="http://www.friendster.com/bookmarks.php?action=add&uid=YOURUSERRID" style="text-decoration: none">
Bookmark</a><br>
<a href="http://www.friendster.com/referafriend.php?refer=YOURUSERRID" style="text-decoration: none">
Forward to Friend</a><br>
<a href="http://www.friendster.com/introduce.php?uid=YOURUSERRID" style="text-decoration: none">
Introduce to Friend</a><br>

</div>

<!------------- CBOX ------------>
<div style="FILTER:alpha(opacity=100,finishopacity=100,style=3);DIRECTION:ltr;background-color:transparent;
width:160; height:320; border:0px inset #0000cc; overflow:auto; font-weight:BOLD; color:#0000cc; text-align:center;  position:absolute; top:650; left:185; z-index:60;">

<!-- BEGIN CBOX - http://www.cbox.ws -->
<div align="center" id="cboxdiv">
<iframe frameborder="0" width="160" height="240" src="http://www3.cbox.ws/box/?boxid=2378897&amp;boxtag=2541&amp;sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border: 0px solid;" id="cboxmain"></iframe><br>
<iframe frameborder="0" width="160" height="75" src="http://www3.cbox.ws/box/?boxid=2378897&amp;boxtag=2541&amp;sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border: 0px solid;border-top:0px" id="cboxform"></iframe>
</div>
<!-- END CBOX -->

</div>

<!-----------MAIN NAVIGATION DONT CHANGE---->
<div style="FILTER:alpha(opacity=100,finishopacity=100,style=3);DIRECTION:ltr;background-color:transparent;
width:200; height:200; border:0px inset 0000CC; overflow:auto; font-weight:BOLD; color:#0000CC; text-align:left; z-index:50; position:absolute; top:320; left:230; PADDING-LEFT:5;">

<a href="http://www.friendster.com/home.php" style="text-decoration: none">Home</a><br>
<a href="http://www.friendster.com/user.php" style="text-decoration: none">Profile</a><br>
<a href="http://www.friendster.com/messages.php" style="text-decoration: none">Messages</a><br>
<a href="http://www.friendster.com/invite.php" style="text-decoration: none">Invite</a><br>
<a href="http://www.friendster.com/blogs.php" style="text-decoration: none">Blogs</a><br>
<a href="http://www.friendster.com/gallery.php" style="text-decoration: none">Search</a><br>
<a href="http://www.friendster.com/editaccount.php" style="text-decoration: none">Settings</a><br>
<a href="http://www.friendster.com/logout.php" style="text-decoration: none">Logout</a>

</div>

<!----------- AUTO FRIENDS ---->
<div style="FILTER:alpha(opacity=100,finishopacity=100,style=2);DIRECTION:ltr;background-color:transparent;
width:325; height:170; border:0px inset #0000CC; overflow:auto; font-weight:BOLD; color:#0000CC; text-align:left; z-index:30; position:absolute; top:490; left:440;">

<script language="javascript">
autofriend="yes"
</script>
<div id="autofriendid" class=column_content></div>
<style type="text/css">
.column_content{height:325px; width:325px; overflow:auto;}
CLEAR: both; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 5px; MARGIN: 0px 0px 5px; WIDTH: 100%; PADDING-TOP: 5px; TEXT-ALIGN: center
}
.friendsof {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 11px; PADDING-BOTTOM: 10px; MARGIN: 0px auto; COLOR: #9c9c9c; PADDING-TOP: 0px; TEXT-ALIGN: center
}
.friends {
DISPLAY: block; FLOAT: left; MARGIN: 10px 9px 0px; WIDTH: 77px; HEIGHT: auto
}
.see_all_friends {
CLEAR: both; PADDING-RIGHT: 0px; BORDER-TOP: #aeaeae 1px solid; PADDING-LEFT: 0px; PADDING-BOTTOM: 5px; MARGIN: 0px 10px 5px; WIDTH: 280px; PADDING-TOP: 5px; TEXT-ALIGN: center
}
.see_all_friends A {
FONT-WEIGHT: bold; COLOR: #424d61; BORDER-BOTTOM: #424d61 1px solid; TEXT-DECORATION: none
}
.see_all_friends A:visited {
FONT-WEIGHT: bold; COLOR: #424d61; BORDER-BOTTOM: #424d61 1px solid; TEXT-DECORATION: none
}
.see_all_friends A:hover {
COLOR: #ff8a00; BORDER-BOTTOM: #ff8a00 1px solid; TEXT-DECORATION: none
}
.friendsphoto A:visited {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px
}
.friends .name {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bold; FONT-SIZE: 11px; FLOAT: left; PADDING-BOTTOM: 2px; MARGIN: 1px 0px 15px; OVERFLOW: hidden; WIDTH: 75px; COLOR: #5f6f8c; PADDING-TOP: 2px; HEIGHT: auto; TEXT-ALIGN: center
}
.friends .name A {
FONT-WEIGHT: normal; COLOR: #2b344c
}
.friends .name A:visited {
FONT-WEIGHT: normal; COLOR: #2b344c
}
.friends .name A:hover {
FONT-WEIGHT: normal; COLOR: #5b647c
}
.friends .icons IMG {
MARGIN: 0px 1px
}
.friends .icons A {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: middle; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px; TEXT-DECORATION: none
}
.friends .icons A:visited {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: middle; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px; TEXT-DECORATION: none
}
.friends .icons IMG {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: middle; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px; TEXT-DECORATION: none
}
.friends .icons {
PADDING-RIGHT: 2px; PADDING-LEFT: 2px; PADDING-BOTTOM: 2px; PADDING-TOP: 3px
}
.friends .icons_frame {
DISPLAY: block; MARGIN: 12px 0px 0px 5px; WIDTH: 65px; HEIGHT: 12px
}
.friends .friends_icons {
FLOAT: left; MARGIN: 0px 7px 0px 0px; WIDTH: 9px; HEIGHT: 12px
}
.friends .icons_seperator {
FLOAT: left; MARGIN: 0px 7px 0px 0px; WIDTH: 1px; HEIGHT: 12px
}
.friends .icons_delete {
FLOAT: left; MARGIN: 0px; WIDTH: 9px; HEIGHT: 12px
}
.friendsphoto {
BORDER-RIGHT: #aeaeae 1px solid; BORDER-TOP: #aeaeae 1px solid; OVERFLOW: hidden; BORDER-LEFT: #aeaeae 1px solid; WIDTH: 75px; BORDER-BOTTOM: #aeaeae 1px solid; HEIGHT: 75px; TEXT-ALIGN: center
}
.friendsphoto IMG {
BORDER-RIGHT: 0px; PADDING-RIGHT: 0px; BORDER-TOP: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: 0px; PADDING-TOP: 0px; BORDER-BOTTOM: 0px; HEIGHT: 75px! important
}
</style>

</div>

<!----------- AUTO TESTIMONIAL BOX ---->
<div style="FILTER:alpha(opacity=100,finishopacity=100,style=2);DIRECTION:ltr;background-color:transparent;
width:380; height:270; border:0px inset #0000CC; overflow:auto; font-weight:BOLD; color:#0000CC; text-align:left; z-index:40; position:absolute; top:680; left:440;">

<script language="javascript">
autotesti="yes";

</script>
<div id=AUT class=left_column_content style="width:285px"></div>
</font>
</b>
<style type="text/css">
.left_column_content {background-color:tranparent;border:none;margin: 0 0 0 px;}
.left_column_content .seeall {
CLEAR: both; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 5px; MARGIN: 0px 0px 5px; WIDTH: 100%; PADDING-TOP: 5px; TEXT-ALIGN: center
}
.left_column_content .seeall .testimonialcounter {
FONT-WEIGHT: bold
}
.left_column_content .noentriesmsg {
PADDING-RIGHT: 9px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; MARGIN: 0px; PADDING-TOP: 9px
}
.left_column_testimonials A {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; COLOR: #d56116; BORDER-BOTTOM: 0px; TEXT-DECORATION: none
}
.left_column_testimonials A:visited {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; COLOR: #d56116; BORDER-BOTTOM: 0px; TEXT-DECORATION: none
}
.left_column_testimonials A:hover {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; COLOR: #d56116; BORDER-BOTTOM: 0px; TEXT-DECORATION: none
}
.left_column_testimonials {
CLEAR: both; BORDER-RIGHT: 0px; PADDING-RIGHT: 30px; BORDER-TOP: 0px; DISPLAY: block; PADDING-BOTTOM: 9px; MARGIN: 10px 0px 0px 10px; BORDER-LEFT: 0px; WIDTH: 530px; BORDER-BOTTOM: 0px
}
.left_column_testimonials .photo {
BORDER-RIGHT: #aeaeae 1px solid; BORDER-TOP: #aeaeae 1px solid; FLOAT: left; MARGIN: 0px 18px 0px 0px; OVERFLOW: hidden; BORDER-LEFT: #aeaeae 1px solid; WIDTH: 50px; BORDER-BOTTOM: #aeaeae 1px solid; HEIGHT: 50px; TEXT-ALIGN: center
}
.left_column_testimonials IMG {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; MARGIN: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px; HEIGHT: 50px
}
.left_column_testimonials_content {
PADDING-RIGHT: 1px; PADDING-LEFT: 1px; FLOAT: left; PADDING-BOTTOM: 5px; MARGIN: 1px; WIDTH: auto; PADDING-TOP: 5px; HEIGHT: auto
}
.left_column_testimonials_content .date {
FONT-WEIGHT: bold; FONT-SIZE: 9px; MARGIN: 0px 0px 5px; COLOR: #bbb
}
.left_column_testimonials_content .delete {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px 0px 10px; PADDING-TOP: 0px
}
.left_column_testimonials_content .readmore {
FONT-SIZE: 9px
}
.testimonialbody {
PADDING-RIGHT: 1px; MARGIN-TOP: 3px; PADDING-LEFT: 1px; PADDING-BOTTOM: 1px; PADDING-TOP: 1px
}
.left_column_hr {
CLEAR: both; PADDING-RIGHT: 0px; DISPLAY: block; PADDING-LEFT: 0px; FLOAT: none; PADDING-BOTTOM: 0px; MARGIN: 0px 10px; WIDTH: auto; PADDING-TOP: 0px; BORDER-BOTTOM: #aeaeae 1px solid; HEIGHT: 2px
}
</style>

</div>

 <SCRIPT language=JavaScript>
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
 </SCRIPT>

<SELECT style="padding:0; FONT-SIZE: 11px; COLOR: #FFFFFF; FONT-FAMILY: tahoma, verdana, helvetica, arial; position:absolute; left:636; top:10; background-color:#000000" onchange="MM_jumpMenu('parent',this,0)" name=select2 size="1"> 
<OPTION selected value="#">CREDITS AND LINKS</OPTION> <OPTION value="#">-------------------------------</OPTION>

<OPTION value=http://www.friendster.com>Friendster</OPTION> 
<OPTION value=http://www.friendster-tweakers.com>Friendster Tweakers</OPTION>
<option value="http://cbox.ws">Cbox</option>
<option value="http://www.yahoo.com">Yahoo</option>
<option value="http://www.markyctrigger.com">MarkyTrigger OG
</option>
<option value="http://www.friendster.com/28324290">chris†ian</option>
</SELECT>

<div style="background-color:transparent;
width:700; height:50; border:0px inset #0000cc; overflow:auto; font-weight:BOLD; color:#0000cc; text-align:center;  position:absolute; top:1000; left:145; z-index:70;">

<a href="http://www.friendster.com/info/index.php?statpos=footer">About Us</A> •

<A href="http://www.friendster.com/info/contacts.php?statpos=footer"> Contact Us</A> •
<A href="http://www.friendster.com/info/shopping.php?statpos=footer"> Store</A> •
<A href="http://www.friendster.com/events.php?statpos=footer"> Events</A> •
<A href="http://www.friendster.com/info/tour/1_0.htm?statpos=footer"> Tour</A> •
<A href="http://www.friendster.com/affiliate.php?statpos=footer"> SuperFriendster</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.

</div>

<!----------FLASH TIME--------->
<div style="position:absolute; overflow:hidden; left:400px; top:1px; width:200px; height:200px; z-index:80">

<p align="center"><embed src='http://f.friendster-tweakers.com/rsc/swf/clock/fsdbr.swf' wmode="transparent"  quality='high' width='106' height='26' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'/></p>

</div>

<MAP NAME="oncepiece_01_Map">
<AREA SHAPE="rect" ALT="" COORDS="79,10,263,41" HREF="http://www.friendster.com/">
<AREA SHAPE="rect" ALT="" COORDS="264,231,432,243" HREF="http://www.friendster.com/28324290">
</MAP>
<!-- End ImageReady Slices -->
</BODY>
</HTML>

Last edited by kirksydney; 11-10-2006 at 09:54 PM.
(Offline)
 
Reply With Quote
Old 11-08-2006, 08:28 PM   #2
arjaypogi99
Senior Member
 
arjaypogi99's Avatar
 
Join Date: May 2006
Location: Galacticus!
Posts: 468
Send a message via Yahoo to arjaypogi99
yet...another nice layout posted by kirks....hehehe...thx to siot and kirks! wakoko
__________________


http://www.friendster.com/darkrjay

C-mIkeY-wAy- Source Code Encrypter
http://www.freewebs.com/v2encryptermikey/index.htm

(Offline)
 
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -7. The time now is 08:53 PM.