
<HTML>
<HEAD>
<TITLE> ''<<,,..::"albErTpremade layout ©"::..,,>></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 {
FONT-SIZE: 10px; SCROLLBAR-HIGHLIGHT-COLOR: #343434;
SCROLLBAR-SHADOW-COLOR: #000000; COLOR: #000000;
SCROLLBAR-3DLIGHT-COLOR: #343434;
SCROLLBAR-ARROW-COLOR: #4a0000; SCROLLBAR-TRACK-COLOR: #250000;
FONT-FAMILY: Tahoma; SCROLLBAR-DARKSHADOW-COLOR: #000000
}
A {
FONT-WEIGHT: normal; FONT-SIZE: 10px; COLOR: #ffffff;
BORDER-BOTTOM: 0px; FONT-STYLE: normal;
TEXT-DECORATION: none
}
A:link {
FONT-WEIGHT: normal; FONT-SIZE: 10px; COLOR: #ffffff;
BORDER-BOTTOM: 0px; FONT-STYLE: normal;
TEXT-DECORATION: none
}
A:visited {
FONT-WEIGHT: normal; FONT-SIZE: 10px; COLOR: #ffffff;
BORDER-BOTTOM: 0px; FONT-STYLE: normal;
TEXT-DECORATION: none
}
A:active {
FONT-WEIGHT: normal; FONT-SIZE: 10px; COLOR: #ffffff;
BORDER-BOTTOM: 0px; FONT-STYLE: normal;
TEXT-DECORATION: none
}
A:hover {
FONT-WEIGHT: bold; FONT-SIZE: 10px; COLOR: #ffffff;
BORDER-BOTTOM: 0px; FONT-STYLE: normal;
BACKGROUND-COLOR: #000000;
TEXT-DECORATION: none
}
DIV {
PADDING-RIGHT: 3px; SCROLLBAR-FACE-COLOR: #000000;
SCROLLBAR-HIGHLIGHT-COLOR: #343434;
SCROLLBAR-SHADOW-COLOR: #000000;
SCROLLBAR-3DLIGHT-COLOR: #343434;
SCROLLBAR-ARROW-COLOR: #4a0000; PADDING-TOP: 3px;
SCROLLBAR-TRACK-COLOR: #250000;
SCROLLBAR-DARKSHADOW-COLOR: #000000
}
</STYLE>
<BODY bgcolor=red leftMargin=0 topMargin=0></body>
<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 Txt="languagejavascript">
(alert)('hop u like my profile",');
(alert)('coMmenT PleZzZZzz');
(alert)('karun lng maglakat,"",');
(alert)('i love u gale..::');
</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 design"
ar[2] = "Pls leave a message on the Chatterbox"
ar[3] = "Don't forget to give me a testi Thanx!"
ar[3] = "add me up bert_1111@yahoo.com"
// 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>
<CENTER>
<FONT face=algerian color=white size=8>
<HR>NAVIGATION</HR>
</FONT></CENTER><BR>
<CENTER><FONT face=italic color=white size=4><A
href="http://www.friendster.com/home.php"><U>HOME</U></A>
<A href="http://www.friendster.com/profile.php"><U>PROFILE</U></A>
<A href="http://www.friendster.com/search.php"><U>SEARCH</U></A>
<A href="http://www.friendster.com/addme.php"><U>ADD ME</U></A>
<A href="http://www.friendster.com/sendme.php"><U>SEND ME</U></A>
<A href="http://www.friendster.com/testimonial.php"><U>TESTIMONIAL</U></A>
<A href="http://www.friendster.com/friends.php"><U>FRIENDS</U></A>
<A href="http://www.friendster.com/logout.php"><U>LOGOUT</U></A> </FONT></CENTER>
<DIV
style="BORDER-RIGHT: #000000 1px outset; BORDER-TOP: #000000 1px outset; FONT-WEIGHT: bold; Z-INDEX: 10; FILTER: alpha(opacity=100,finishopacity=20,style=1); LEFT: 161px; OVERFLOW: auto; BORDER-LEFT: #000000 1px outset; WIDTH: 226px; COLOR: #ffffff; BORDER-BOTTOM: #000000 1px outset; POSITION: absolute; TOP: 187px; HEIGHT: 250px; BACKGROUND-COLOR: transparent; TEXT-ALIGN: left">
<TABLE border=1>
<TBODY>
<TR>
<TD>
<P style="TEXT-ALIGN: center"><FONT color=black size=1><IMG height=100
src="shadow_files/m43lw6.gif" width=100
border=0><BR><B><U>Name:</B></U><B> Albert
Lingas</B><BR><B><U>Nick:</B></U> <B>beRt</B><BR><B><U>Birthday:</B></U>
<B>February 11, 1989></B><BR><B><U>Age:</B></U>
<B>18</B><BR><B><U>Gender:</B></U><B> Male!</B><BR><B><U>Status:
</B></U><B>Single</B><BR><B><U>School:</B></U><B>ACLC koronadal
City</B><BR><B><U>Hobbies:</B></U> <B>Web designing, Playing Computer
games, Listening Music,</B> <B>Watching TV, Texting, Reading
Magazines and sleeping.</B> </P><B>
<HR>
MORE ABOUT ME:<BR><BR>Sed ut perspiciatis unde omnis iste natus error sit
voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit
aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui
ratione voluptatem sequi nesciunt.
<HR>
MORE ABOUT I:
<P>I want to meet my TWIN<BR>I want to meet my soulmate<BR>I want to meet
all my friends<BR>I want to meet SMB Beermen<BR>I want to meet
ARTISTAS<BR>I want to meet Manny Pacquiao<BR>I want to be in Game K N
B<BR>I want to be in Deal or No Deal<BR>I want to be in Wowowee<BR>I want
to become a millionaire<BR>I want to travel the world<BR>I am 18years
old<BR>I am a music enthusiast<BR>I am a web designer designer<BR>I am a
graphic designer<BR>I am a smart globe TM Sun user<BR>I am a dreamer<BR>I
am someone with high ambition<BR>I am classified as middle-class<BR>I
sleep late<BR>i wake up late<BR>I dont smoke and drink alcohol<BR>I love
the Philippines<BR>I love making money<BR>I love computers<BR>I love
gadgets<BR>I love Anime<BR>I love computer games<BR>I love video
games<BR>I love FHM<BR>I love movies and DVDs<BR>I love Interior
Design<BR>I love reading magazines<BR>I love Kris Aquino<BR>I love
Willy<BR>I love Animax<BR>I love ABSCBN Kapamilya<BR>I hate
vegetables<BR>I hate backstabbers<BR>I hate user-friendly people<BR>I hate
deadlines<BR>I would like to experience love<BR>I would like to have a
worry-free life<BR></B></P></FONT></TD></TR></TBODY></TABLE></FONT></DIV><FONT
face=Verdana color=#ffffff size=1>
<DIV
style="BORDER-RIGHT: #000000 1px outset; BORDER-TOP: #000000 1px outset; PADDING-LEFT: 5px; FONT-WEIGHT: bold; Z-INDEX: 11; FILTER: alpha(opacity=20,finishopacity=100,style=1); LEFT: 662px; OVERFLOW: auto; BORDER-LEFT: #000000 1px outset; WIDTH: 226px; COLOR: #ffffff; DIRECTION: rtl; BORDER-BOTTOM: #000000 1px outset; POSITION: absolute; TOP: 187px; HEIGHT: 250px; TEXT-ALIGN: left">FRIENDS/PHOTOS/TESTIMONIAL
HERE<BR><BR>
<P align=center><A href="http://friendster.com/reiearth"><IMG height=100
alt="Put photos and friend links here" src="shadow_files/2315.gif" width=100
border=0></A><IMG height=100 src="shadow_files/2316.gif" width=100
border=0><BR><IMG height=100 src="shadow_files/2317.gif" width=100 border=0><IMG
height=100 src="shadow_files/2331.gif" width=100 border=0><BR><IMG height=100
src="shadow_files/2332.gif" width=100 border=0><BR><IMG height=95
src="shadow_files/2326.gif" width=95 border=0><BR></P>
<HR>
<SCRIPT language=javascript>
last20="yes";
tagboarduname="reiearth";
</SCRIPT>
<DIV id=last20id></DIV><BR>
<SCRIPT language=javascript>
autotesti="yes";
</SCRIPT>
<DIV class=left_column_content id=AUT style="WIDTH: 200px"></DIV><BR>
<SCRIPT language=javascript>
autofriend="yes";
</SCRIPT>
<DIV class=column_content id=autofriendid></DIV><BR>
<SCRIPT language=javascript>
lastlogin="yes"
</SCRIPT>
<DIV id=lastloginid></DIV></DIV><IMG
style="FILTER: alpha(opacity=100,finishopacity=0,style=1)
alpha(opacity=100,finishopacity=0,style=2); LEFT: 271px; POSITION: absolute; TOP: 511px"
height=128 src="shadow_files/dancinganimegirlmi8.gif" width=128 top:514? left:264; ;>
<EMBED style="FILTER: alpha(Opacity=100,FinishOpacity=50,Style=2); LEFT: 374px; POSITION: absolute; TOP: 85px"
pluginspage=http://www.macromedia.com/go/getflashplayer
src=http://www.freewebtown.com/shadow2/mp3player.swf width=300 height=300
type=application/x-shockwave-flash menu="false"
flashvars="playList=http://www.freewebtown.com/shadow2/mp3player.xml"
wmode="transparent" quality="high" allowScriptAccess="never">
</EMBED>
<IMG style="FILTER: alpha(opacity=100;finishopacity=100,style=2)
glow(color=white,strength=5); LEFT: 800px; POSITION: absolute; TOP: 543px"
height=100 src="shadow_files/dancer2.gif" width=100 border=0>
<DIV onmouseover=nereidFade(this,100,100,20)
style="BORDER-RIGHT: medium none; PADDING-RIGHT: 0px; BORDER-TOP: medium none; PADDING-LEFT: 0px; FILTER: alpha(opacity=100,finishopacity=30,style=3) gray; LEFT: 892px; PADDING-BOTTOM: 0px; OVERFLOW: hidden; BORDER-LEFT: medium none; WIDTH: 100px; PADDING-TOP: 0px; BORDER-BOTTOM: medium none; POSITION: absolute; TOP: 126px; HEIGHT: 485px"
onmouseout=nereidFade(this,20,50,10)>
<SCRIPT language=javascript>
<!--
var NS4 = (document.layers) ? true : false;
var IE4 = (document.all) ? true : false;
var interval = 1;
var increment =30;
var pause = 5000;
var bannerColor = "transparent";
var bannerWidth = 100;
var bannerHeight = 500;
var Msg = new Array(
"<a href='http://www.friendster.com/beRt'>
<img src='http://i2.photobucket.com/albums/y21/beRt/shadow/m60.gif></a><br><br>
<img src='http://i2.photobucket.com/albums/y21/beRt/shadow/m64.gif'><br><br>
<img src='http://i2.photobucket.com/albums/y21/beRt/shadow/m71.gif'><br><br>
<img src='http://i2.photobucket.com/albums/y21/bert/shadow/m59.gif'><br><br>
<img src='http://i2.photobucket.com/albums/y21/bert/shadow/m64.gif'>",
"<a href='http://www.friendster.com/beRt'>
<img src='http://i2.photobucket.com/albums/y21/bert/shadow/m60.gif'></a><br><br>
<img src='http://i2.photobucket.com/albums/y21/bert/shadow/m71.gif'><br><br>
<img src='http://i2.photobucket.com/albums/y21/bert/shadow/m71.gif'><br><br>
<img src='http://i2.photobucket.com/albums/y21/beRt/shadow/m59.gif'><br><br>
<img src='http://i2.photobucket.com/albums/y21/beRt/shadow/m64.gif'>"
);
if (NS4) onload = startBanner;
else startBanner();
function showMessage(n, show) {
var showL = (NS4) ? eval("message" + n) :
eval("message" + n + ".style");
showL.visibility = (show) ? ((NS4) ? "show" : "visible") :
((NS4) ?
"hide" : "hidden");
}
function nextMessage() {
var msgIndex = nextIndex;
nextIndex = (msgIndex == Msg.length - 1) ? 0 : msgIndex + 1;
scrollBanner(msgIndex, nextIndex);
}
function moveUp() {
if (NS4) {
preLayer.top -= increment;
if (nextLayer.top - increment <= nextLayerTarget) {
nextLayer.top = nextLayerTarget;
clearInterval(intervalID);
preLayer.visibility = "hide";
timeoutID = setTimeout("nextMessage()", pause);
} else {
nextLayer.top -= increment;
}
} else {
preLayer.pixelTop -= increment;
if (nextLayer.pixelTop - increment <= nextLayerTarget) {
nextLayer.pixelTop = nextLayerTarget;
clearInterval(intervalID);
preLayer.visibility = "hidden";
timeoutID = setTimeout("nextMessage()", pause);
} else {
nextLayer.pixelTop -= increment;
}
}
}
function scrollBanner(from, to) {
if (NS4) {
preLayer = eval("message" + from);
nextLayer = eval("message" + to);
nextLayer.top = preLayer.top + bannerHeight;
nextLayerTarget = preLayer.top;
} else {
preLayer = eval("message" + from + ".style");
nextLayer = eval("message" + to + ".style");
nextLayer.pixelTop = preLayer.pixelTop + bannerHeight;
nextLayerTarget = preLayer.pixelTop;
}
showMessage(to, true);
intervalID = setInterval("moveUp()", interval);
}
function drawIE() {
var text = '<DIV ID="banner" STYLE="position:absolute" left="0" top="0">';
for (var i = Msg.length - 1; i >= 0; i--) {
text += '<DIV ID="message' + i +
'" STYLE="position:absolute" left="0"
top="0"></DIV>';
}
text += '</DIV>';
document.write(text);
with (document.all.banner.style) {
width = bannerWidth;
height = bannerHeight;
clip = "rect(0 " + bannerWidth + " " + bannerHeight + " 0)";
backgroundColor = bannerColor;
}
for (i = 0; i < Msg.length; i++) {
with (eval("message" + i + ".style")) {
visibility = "hidden";
pixelLeft = 0;
pixelTop = 0;
width = bannerWidth;
backgroundColor = bannerColor;
}
}
}
function drawNS() {
banner = new Layer(bannerWidth);
with (banner) {
clip.right = bannerWidth;
clip.bottom = bannerHeight;
document.bgColor = bannerColor;
left = bannerLeft;
top = bannerTop;
visibility = "show";
}
for (var i = 0; i < Msg.length; i++) {
eval("message" + i + " = " +
"new Layer(bannerWidth, banner)");
with(eval("message" + i)) {
visibility = "hide";
left = 0;
top = 0;
bgColor = bannerColor;
}
}
}
function writeBanner() {
var writeL;
if (NS4) {
for (var i = 0; i < Msg.length; i++) {
writeL = eval("message" + i);
writeL.document.write(Msg[i]);
writeL.document.close();
}
} else {
for (var i = 0; i < Msg.length; i++) {
writeL = eval("message" + i);
writeL.innerHTML = Msg[i];
}
}
}
function startBanner() {
if (NS4)
drawNS()
else
drawIE();
writeBanner();
showMessage(0, true);
nextIndex = 0;
timeoutID = setTimeout("nextMessage()", pause);
}
//-->
</SCRIPT>
</DIV><FONT size=1>
<DIV
style="FILTER: alpha(opacity=100,finishopacity=50,style=3); LEFT: 16px; WIDTH: 994px; POSITION: absolute; TOP: 769px; HEIGHT: 23px"
height="21">
<MARQUEE onmouseover=this.stop() style="FILTER: Glow(Color=black, Strength=9)"
onmouseout=this.start() scrollAmount=5 width=994 height=23><B><FONT
color=#ffffff>Quick Links:</FONT> <A
href="http://www.friendster.com/editusername.php">[edit url] </A><A
href="http://www.friendster.com/bulletinboard.php">[view bulletins] </A><A
href="http://www.friendster.com/bulletin.php">[post a bulletin] </A><A
href="http://www.friendster.com/friendrequests.php">[new friend request] </A><A
href="http://www.friendster.com/testimonials.php?action=pending">[new
testimonials] </A><A href="http://www.friendster.com/editprofile.php">[edit
profile] </A><A href="http://www.friendster.com/editphotos.php">[edit photos]
</A><A href="http://www.friendster.com/viewphotos.php?type=1degree">[photo
slideshow] </A><A
href="http://www.friendster.com/photolist.php?list=friends">[gallery] </A><A
href="http://www.friendster.com/userlist.php?list=newusers">[more new members]
</A><A href="http://www.friendster.com/userlist.php?list=feat_profile">[more
featured fan profile] </A><A href="http://www.friendster.com/blogs.php">[more
blog entries] </A></B></FONT></MARQUEE></DIV>
<DIV
style="PADDING-RIGHT: 10px; FILTER: alpha(opacity=100,finishopacity=100,style=1); LEFT: 439px; WIDTH: 181px; POSITION: absolute; TOP: 469px; HEIGHT: 215px; overflo: hidden">
<TABLE cellSpacing=0 cellPadding=0 align=center summary="cbox tagboard"
border=0>
<TBODY>
<TR>
<TD align=middle><IFRAME id=cboxmain
style="BORDER-RIGHT: 0px solid; BORDER-TOP: 0px solid; BORDER-LEFT: 0px solid; BORDER-BOTTOM: 0px solid"
name=cboxmain marginWidth=2 marginHeight=2 src="shadow_files/box.htm"
frameBorder=0 width=181 height=215
allowTransparency>
</IFRAME></TD></TR></TBODY></TABLE></DIV>
<DIV
style="PADDING-RIGHT: 10px; LEFT: 762px; OVERFLOW: hidden; WIDTH: 170px; POSITION: absolute; TOP: 646px; HEIGHT: 100px">
<TABLE cellSpacing=0 cellPadding=0 width=153 align=center
summary="cbox tagboard" border=0>
<TBODY>
<TR>
<TD align=middle width=153><IFRAME id=cboxform
style="BORDER-RIGHT: 0px solid; BORDER-TOP: 0px; BORDER-LEFT: 0px solid; BORDER-BOTTOM: 0px solid"
name=cboxform marginWidth=2 marginHeight=2
src="\\Pc032\studfile (d)\albertfiles\FRIENDSTERTALK\shadow_files\box(1).htm"
frameBorder=0 width=143 scrolling=no height=80
allowTransparency>
</IFRAME>
</TD>
</TR>
</TBODY>
</TABLE>
</DIV>
</B>
</FONT>
</B>
</FONT>
<EMBED style="Z-INDEX: 3; LEFT: 3px; POSITION: absolute; TOP: -5px"
pluginspage=http://www.macromedia.com/go/getflashplayer
src=http://www.freewebtown.com/shadow2/snow.swf width=300 height=200
type=application/x-shockwave-flash quality="high" wmode="transparent">
</EMBED>
<DIV style="LEFT: 70px; OVERFLOW: hidden; WIDTH: 94px; POSITION: absolute; TOP: 611px; HEIGHT: 39px"><!-- Start of StatCounter Code --><A
href="http://www.statcounter.com/" target=_blank>
<IMG alt="web page hit counter"
src="shadow_files/counter.png" border=0></A>
<!-- End of StatCounter Code -->
</DIV>
<EMBED style="FILTER: alpha(opacity=100,finishopacity=0,style=2); LEFT: 700px; POSITION: absolute; TOP: 45px"
name="D.Lux Photo Cube" pluginspage=http://www.macromedia.com/go/getflashplayer
align=middle
src=http://www.dluxproductions.com/webcandy/photocube2/photocube2d.swf?imageID=2d37c1b0699054c4e5bec623c0672b2d&glowOn=&shadowOn=&sparkOn=1&fireOn=&twoByTwoOn=
width=150 height=140 type=application/x-shockwave-flash
allowScriptAccess="sameDomain" wmode="transparent" bgcolor="#000000"
quality="high">
<EMBED style="FILTER: alpha(opacity=100,finishopacity=0,style=2); LEFT: 770px; POSITION: absolute; TOP: 5px"
pluginspage=http://www.macromedia.com/go/getflashplayer align=middle
src=http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf width=106 height=26
type=application/x-shockwave-flash quality="high" wmode="transparent">
<SCRIPT language=javascript>
var advertisem = "yes";
</SCRIPT>
<DIV id=advertisemsundel>
</DIV>
</BODY>
</HTML>-Offline- |

Read THE FORMAT! I can't stress it enough.
also, READ THE RULES you've already created a thread like this & for the sake of the forum, i kindly asked you to edit them so that it won't get deleted.
-REPORTED-
Last edited by sugarstyx_x (2008-08-06 04:58:51)

i can't see the sreenshot!

-Offline- |