friendsterTalk - Friendster Forum

friendsterTalk - Friendster Forum

Welcome guest! Please Login or Register.

  • JavaScript
  •  » [Advance Alert scripts] updated (3 new scripts)

#1  2008-06-12 14:09:01

---xXirukiTepe---
» FriendsterElite
---xXirukiTepe---'s display avatar
Ill Shoot Your Veins >_<
Naruto Fanz-ShinobiElite
Location: KARAKURA TOWN
Registered: 2007-11-01
Posts: 3750
Reputation: 440
Friendster

[Advance Alert scripts] updated (3 new scripts)

Note: Some of the codes are gained through zip files. Do not remove any stated credits inside the scripts...
If you do so, A punishment can/could be marked to your reputation as a person.
And, do not expect that all of the scripts are compatible with your default browser. :thumbsup:

==> Alert scripts

* Fake virus alert

Code:

alert ("Error: 107x has occurred.  A virus has begun to infect your hard drive.  Please erase all infected files");
var answer = confirm ("Please inform the the hardware vendor of this error.")
if (answer)
alert ("The virus has been contained but the browser will shutdown to check for and prevent further internal damages.")
else
alert ("The problem has not been fixed, the browser must be shut downtown to prevent further contamination.");

preview: CLICKA!

* Ur choice script (redirection version)

/*This script by: Tony Rengel and Danny Duran  Email us at: customjava@hotmail.com   
We will make CUSTOM java scripts for your website!! 
just keep this header up here! up here!
Thanks.  Have a GREAT day!
To edit its pretty simple, just see where the text or URL is
any questions, e-mail customjava@hotmail.com */
function ask()
{
      var enter=prompt("You have 3 options:   Type 1 for more info. Type 2 to continue. Type 3 to drop some comments."," ");
        var yes = 1
            if (enter == 1)
             {
              alert('This page: is best viewed in FF. Have fun and enjoy!Tc=)  :-)');
             }
            else if (enter == 2)
             {
              parent.location.href = "http://profiles.friendster.com/user id here"
             }
            else if (enter == 3)
             {
              parent.location.href = "http://www.friendster.com/comments.php?uid=user id here"
             }
      else
             {
              alert('invalid number, try again');
              ask()
             }
           
     
}
ask()

preview: http://h1.ripway.com/popup/choicex.html

* Ur history (came from alert)

var name = prompt("What is your name, friendster user?")
alert("Hello "+name+" and welcome to my page. You have a "+navigator.appName+" version: "+navigator.appVersion+" and you came from "+document.referrer+". Have fun!")

preview: http://h1.ripway.com/popup/from.html

* Fooling Someone Alert (multiple version)

Code:

var name=prompt ('Enter your nickname..');alert('Welcome,'+name+'!');var email=prompt ('What Is Your E-Mail Address?');alert(' '+email+' ,Is A Cool E-Mail Address,'+name+'!?');alert('Wakokoko '+name+'!');alert('Gettin mad?'+name+'!');alert('Tired!!huh?');alert(''+name+'..is a loser');alert('Huhuhu!');alert('Okay ill let you go');var enter=prompt ('But first tell me that u love me!');alert('Haha...What a fool!');

preview: http://h1.ripway.com/popup/madamee.html

* Whats the password alert!

Code:

var password;
var pass1="daniel";
password=prompt('Oops. Password is required! Hint: the 1st name of Harry Potter in real lyf =)');
if (password==pass1)
alert('YAY you got it right! Click OK to enter!');
else
{
alert('Oops!wrong!!!prrrrttt...');
}

preview: http://h1.ripway.com/popup/password.html



* No active X event alert

Code:

function doSomething()
{
    foobar.Version();
}

function MyEventHandler(stuff)
{
  alert("Event");
}

try
{
  x = new ActiveXObject("Microsoft.XMLHTTP");
  x.onreadystatechange = MyEventHandler;
  alert('Works fine for XMLHTTP');
 
  o = new ActiveXObject("CrossAx.TestCtrl");
  o.MyEvent = MyEventHandler;
  alert('This never works');
 
}
catch (e)
{
  alert(e);
}

preview: http://h1.ripway.com/popup/bigalert.html

* Overloaded alert (almost everything is here)

Code:

var newline = "\n\n";
var now = new Date();
var millinow=now.getTime()/1000;
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
now.setHours(now.getHours()+1);
var min=60*now.getUTCHours()+now.getUTCMinutes() + now.getUTCSeconds()/60;
var internetTime=(min/1.44);
internetTime="Internet Time: @"+Math.floor(internetTime);
var clock = "It's exactly "+hours+":"+minutes+":"+seconds+" hours";
var browser = "You are using " + navigator.appName +" "+navigator.appVersion;
var winwidth= window.screen.width;
var winheight= window.screen.height;
var screenresolution= "Screen resolution: "+window.screen.width+" x "+window.screen.height;
var lastdoc = "You came from: "+document.referrer;
var expDays = 30;
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));

function Who(info){
var VisitorName = GetCookie('VisitorName')
if (VisitorName == null) {
VisitorName = "stranger";
SetCookie ('VisitorName', VisitorName, exp);
}
return VisitorName;
}

function When(info){
var rightNow = new Date()
var WWHTime = 0;
WWHTime = GetCookie('WWhenH')
var lastHereFormatting = new Date(WWHTime); // Date-i-fy that number
//alert(WWHTime);
var intLastVisit = (lastHereFormatting.getYear() * 10000)+(lastHereFormatting.getMonth() * 100) + lastHereFormatting.getDate()
var lastHereInDateFormat = "" + lastHereFormatting; // Gotta use substring functions
var dayOfWeek = lastHereInDateFormat.substring(0,3)
var dateMonth = lastHereInDateFormat.substring(4,11)
var timeOfDay = lastHereInDateFormat.substring(11,16)
var year = lastHereInDateFormat.substring(23,25)
var WWHText = dayOfWeek + ", " + dateMonth + " at " + timeOfDay // display
SetCookie ("WWhenH", rightNow.getTime(), exp)
//alert(WWHText);
return WWHText;

}
function Count(info){
var psj=0;
// How many times
var WWHCount = GetCookie('WWHCount')
if (WWHCount == null) {
WWHCount = 0;
}
else{
WWHCount++;
}
SetCookie ('WWHCount', WWHCount, exp);
return WWHCount;
}
function set(){
VisitorName = prompt("Who are you?",'');
SetCookie ('VisitorName', VisitorName, exp);
SetCookie ('WWHCount', 0, exp);
SetCookie ('WWhenH', 0, exp);
return VisitorName;

}

function getCookieVal (offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() - 1);
// This cookie is history
var cval = GetCookie (name);
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();

}
var countvisits="You've been here " + Count() + " time(s). Last time was " + When() +"."
if (navigator.javaEnabled()) {
var javaenabled="Your browser is able to run java-applets";
}
else {
var javaenabled="Your browser is not able to run java-applets";
}
function showAlert() {
var later = new Date()
var millilater=later.getTime()/1000
var loadTime=(Math.floor((millilater-millinow)*100))/100
var loadTimeResult= "It took you "+loadTime+" seconds to load this page"
var babiesborn=Math.ceil(loadTime*4.18)
var babiesbornresult="While this page was loading "+babiesborn+" babies have been born"
if (babiesborn==1){babiesbornresult="While this page was loading "+babiesborn+" baby has been born"}
alert(newline+newline+"Welcome "+VisitorName+"!"+newline+newline+browser+newline+clock+newline+loadTimeResult+newline+internetTime+
newline+screenresolution+newline+lastdoc+newline+countvisits+newline+javaenabled+newline+
babiesbornresult+newline+newline)
}
document.write('<body onLoad="set();showAlert()">') ;

preview: CLICK

*good bye alert (timer alert)

Code:

 var onHours = " ";

 var onMinutes = " ";

 var onSeconds = " ";

 var offHours = 0;

 var offMinutes = 0;

 var offSeconds = 0;

 var logSeconds = 0;

 var logMinutes = 0;

 var logHours = 0;

 var OnTimeValue = " ";

 var OffTimeValue = " ";

 var PageTimeValue = " ";

 // Back to previous page.

 function WinOpen() 

    {

    getLogoffTime();

    }

 // Loads HTML page to full window for View Source.

 function WinOpen1() 

    {

    alert('\nPage will load to full screen.\n\nUse View/Document Source from menu bar to view source.\n\nClose new window to return to this page. ');

    window.open("js-timer.htm","DisplayWindow","menubar=yes,scrollbars=yes");

    window.open("js-timer.htm","DisplayWindow","menubar=yes,scrollbars=yes");   

    }


 // Captures logon time.

 function getLogonTime()

    {

    var now = new Date();

    // Used to display logon time.

    var ampm = (now.getHours() >= 12) ? " P.M." : " A.M."

    var Hours = now.getHours();

          Hours = ((Hours > 12) ? Hours - 12 : Hours);

    var Minutes = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes();

    var Seconds = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds();

    // String to display log-on time.

    OnTimeValue =(" "

        + Hours

        + Minutes

        + Seconds

        + " "

        + ampm);

    // Capture logon time for use in timer().

    onHours = now.getHours();

    onMinutes = now.getMinutes();

    onSeconds = now.getSeconds();  

    }

 function getLogoffTime()

    {

    var now = new Date();

    // Used to display logoff time.

    var ampm = (now.getHours() >= 12) ? " P.M." : " A.M."

    var Hours = now.getHours();

          Hours = ((Hours > 12) ? Hours - 12 : Hours);

    var Minutes = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes();

    var Seconds = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds();

    // String to display log-off time.

    OffTimeValue =(" "

        + Hours

        + Minutes

        + Seconds

        + " "

        + ampm);

    // Capture logoff time for use in timer().

    offHours = now.getHours();

    offMinutes = now.getMinutes();

    offSeconds = now.getSeconds(); 

    timer(); 

    }

 // Compute difference between logoff time and logon time. 

 function timer()

    { 

    if (offSeconds >= onSeconds)

       { logSeconds = offSeconds - onSeconds; }

    else

       {

       offMinutes -= 1;

       logSeconds = (offSeconds + 60) - onSeconds;      

       }

    if (offMinutes >= onMinutes)

       { logMinutes = offMinutes - onMinutes; }

    else

       {

       offHours -= 1;

       logMinutes = (offMinutes + 60) - onMinutes;

       }

    logHours = offHours - onHours;

    // Used to display time on page.

    logHours =  ((logHours < 10) ? "0" : ":") + logHours;

    logMinutes = ((logMinutes < 10) ? ":0" : ":") + logMinutes;

    logSeconds = ((logSeconds < 10) ? ":0" : ":") +logSeconds;

    // String to display time on page.

    PageTimeValue =(" "

        + logHours

        + logMinutes

        + logSeconds);

    displayTimes();

    }

 function displayTimes()

    {

    alert("Thank you for visiting my Site\  \nLOG ON TIME    : " +OnTimeValue+"\n\nLOG OFF TIME  : "+OffTimeValue+"\n\nTIME ON PAGE : " + PageTimeValue);

    }
document.write('<body onUnLoad="WinOpen()" onLoad="getLogonTime()";>') ;

preview: http://h1.ripway.com/popup/bye2.html

update as of June 13 08

* Time Lived alert

Code:

var nam=''
var ask=''
var sure=''
function calculate(){
var sec=ask*365*24*60*60;
var min=ask*365*24*60;
var hr=ask*365*24;
var day=ask*365;
alert(nam+', you have lived '+day+' days, '+hr+' hours, '+min+' minutes and '+sec+' seconds.');
}
function tellResult(){
nam=prompt("PLEASE ENTER YOUR NAME!!!");
ask=prompt("PLEASE ENTER YOUR AGE!!!");
if (!ask)                                                    
must();
else
sure=confirm("ARE YOU SURE?");
if (!nam)
nam='Well';
if (!sure)
tellResult();
else
calculate();
}
function must(){
alert("You must enter your age!!!");ask=prompt("PLEASE ENTER YOUR AGE!!!");
if (!ask)
must();
else
sure=confirm("ARE YOU SURE?");
}
document.write('<body onLoad="tellResult();must()">') ;

preview:http://h1.ripway.com/popup/timelive.html

* Any click Alert (Lol. this is not obligatory) with disadvantage ..Nwei, just wanna share this code;

Code:

function stayaway()
{
alert("Are you trying to steal my scripts, dude!?\rWell, back off! Don't make me call security!")
}
document.write('<body onMousedown="stayaway()">') ;

preview: http://h1.ripway.com/popup/anyclick.html

* Ip blocker alert> If you want to block a specific user, With a specific ip address...then
use this one.. This can be considered as an ENEMY ALERT

var ip = '<!--#echo var="REMOTE_ADDR"-->'
if (ip == 'IP ADDRESS OF UR ENEMY HIR') {
alert("STOP! You are viewing this page from an IP address that is not allowed!");
alert("Why can't you guys just leave me alone?");
if (confirm("Do you want to leave peacefully? Or will I have to help you?"))
{location.href="ANY HTTP:// LINK OF A SITE HERE" } else { ("OK you choose I don't care! Bye bye! Don't come back!"); {location.href="ANY HTTP:// LINK OF A SITE HERE" }} }

Updates: 11/15/08

*Pop up is blocked alert

Code:

if(popUpsBlocked)
  alert('We have detected that you are using popup blocking software.\nThis easy article can show you how to detect this using Javascript...');

*Print page alert (automatic version)

Code:

function printPage() {if (window.print) {agree = confirm('This page contains sensitive information that \nwe recommend you print a copy of at this time. \n\nOK to print now?');if (agree) window.print();
   }
}

Updates: 11/23/08
*Screen size alert

Code:

<!-- Begin
alert('Your screen is:\n\n' + screen.width + ' pixels by ' + screen.height + ' pixels');
// End -->

note: for Js extension only! :thumbsup:

ps: another features will be added. As soon as possible

credits:
javanet
jsmade easy
jscript kit
dynamic drive
sir erick king
dhtml masters

Last edited by ---xXirukiTepe--- (2008-11-23 06:18:09)



Mou Hitori no Kimi e
N ∅ ∑ I N
TRUE: Somebody hacked my other fs account! Grrr! add my new 1

#2  2008-06-12 14:16:13

jheneko
» FriendsterAgent
jheneko's display avatar
Keep Moving Forward
Laymakers Society
Location: SouL Society
Registered: 2008-05-16
Posts: 2025
Last visit: 2008-11-30
Reputation: 75
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

cool.. the previews are even cooler.. what would happen if you put one of this codes inside a external css file??


VaNiTY.                                                                  ~ じぇねこ ゆえ [あいしてます!] ~

#3  2008-06-12 14:17:27

Pupil®
» FriendsterTalker
Pupil®'s display avatar
Juz a Pupil®
Class X
Location: Leyte Ph
Registered: 2007-10-03
Posts: 162
Last visit: 2008-11-22
Reputation: 1
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

Wow! :thumbsup: very nice!
i like the Overloaded alert :D



CSS Generator


Allow me to look at YOU! Just a pupil®.

#4  2008-06-12 15:08:43

filthyy
» FriendsterNewbie
Registered: 2008-01-14
Posts: 1
Last visit: 2008-09-07
Reputation: ~

Re: [Advance Alert scripts] updated (3 new scripts)

can you give me a linker for .css and .js and instruction how i can use it   :(

please help me ya :cry: let my friendster like's good

talk with me pliz at yahoo messenger : andre_filthy@yahoo.com    :)


i'll be waiting you  friend =)

Last edited by filthyy (2008-06-12 15:17:36)

#5  2008-06-12 15:48:51

suddendeath
» FriendsterFreak
suddendeath's display avatar
Just Do It
.White Protector.
Location: Malaysia
Registered: 2007-12-15
Posts: 1661
Reputation: 45

Re: [Advance Alert scripts] updated (3 new scripts)

another alert script..:thumbsup:
thx 4 sharing...


#6  2008-06-12 21:59:19

losher29
» FriendsterWhiz
losher29's display avatar
~lalala
The Scandalers
Location: on a cage
Registered: 2008-04-02
Posts: 3312
Reputation: 105

Re: [Advance Alert scripts] updated (3 new scripts)

the first one in funny!
seems so realistic!


"Love is composed of a single soul inhabiting two bodies."

#7  2008-06-12 22:43:31

sprongky
» FriendsterManiac
sprongky's display avatar
Now You See Me!
Location: Santiago Isabela
Registered: 2007-11-06
Posts: 882
Last visit: Today
Reputation: 20
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

5 ThumbsUp For U, LoL Nice Script Bro,

Actually I Have The Same Of Alert Box, but i dont share it because many of that code are not compatible,

but really it is helpful to other member,

that so tired of putting the old alert box :thumbsup::thumbsup::thumbsup::thumbsup::thumbsup:



Hit My Spoiler

#8  2008-06-12 23:17:18

samisam
» FriendsterTalker
New and Confused
Black Pinkers Clan
Location: Rizal
Registered: 2008-05-28
Posts: 157
Last visit: Today
Reputation: ~

Re: [Advance Alert scripts] updated (3 new scripts)

OM.. nyc scripts.. love it.. esp the pass. thing. :lol:




Tnx for siz nina.. (very nice person!!) 4 my sig!!

#9  2008-06-13 01:43:19

m0g0l
» FriendsterTalker
m0g0l's display avatar
newbie wiLLing to learn
Location: ZAmboanga CIty
Registered: 2007-11-09
Posts: 175
Last visit: Yesterday
Reputation: 2
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

thanks for sharing this...


my signature is still under construction...:wallbash::wallbash::wallbash:

#10  2008-06-13 02:54:41

flint_hydz
» FriendsterGeek
flint_hydz's display avatar
Knights of the Round
Rockstars
Location: Island Kurakuriko
Registered: 2007-06-23
Posts: 1191
Last visit: Today
Reputation: 35
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

"While this page is loading 10 babies were born?"

hehe..

nice alert scripts.. :D:thumbsup:




^ I Love Her So Much ^

#11  2008-06-13 05:32:28

---xXirukiTepe---
» FriendsterElite
---xXirukiTepe---'s display avatar
Ill Shoot Your Veins >_<
Naruto Fanz-ShinobiElite
Location: KARAKURA TOWN
Registered: 2007-11-01
Posts: 3750
Reputation: 440
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

filthyy wrote:

can you give me a linker for .css and .js and instruction how i can use it   :(

please help me ya :cry: let my friendster like's good

talk with me pliz at yahoo messenger : andre_filthy@yahoo.com

Go to fs underground for new linkers...

jheneko wrote:

cool.. the previews are even cooler.. what would happen if you put one of this codes inside a external css file??


For Js use only... =)

ps: thanks everyone. ill add more scripts.... next time!
:D



Mou Hitori no Kimi e
N ∅ ∑ I N
TRUE: Somebody hacked my other fs account! Grrr! add my new 1

#12  2008-06-13 06:04:33

sweetdea_harry18
» FriendsterAddict
sweetdea_harry18's display avatar
GLAMOROUS:)
Alchemy Explicit AE
Location: in k3^!N's heart
Registered: 2008-04-16
Posts: 410
Last visit: 2008-11-19
Reputation: 5
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

cool tnx for sharing!



just call me dea...ღthe high queenღ

#13  2008-06-13 07:49:22

---xXirukiTepe---
» FriendsterElite
---xXirukiTepe---'s display avatar
Ill Shoot Your Veins >_<
Naruto Fanz-ShinobiElite
Location: KARAKURA TOWN
Registered: 2007-11-01
Posts: 3750
Reputation: 440
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

^Arigatou. Haha...Lol

=)



Mou Hitori no Kimi e
N ∅ ∑ I N
TRUE: Somebody hacked my other fs account! Grrr! add my new 1

#14  2008-06-13 08:20:44

J-pop
» Banned
J-pop's display avatar
jpop musics: LISTEN
Location: japan
Registered: 2008-02-03
Posts: 114
Last visit: 2008-07-25
Reputation: -1
???

Re: [Advance Alert scripts] updated (3 new scripts)

like them.
plus repu 4 youu... :rose: :) :) :) :) :)

see u around friend.




j-pop is me:
_watashi jpop musics_

#15  2008-06-13 08:22:09

03_khine_03
» FriendsterGeek
03_khine_03's display avatar
nakakaasar talaga!
ReNeGaDeS de Alliance
Location: PiLiPinAs
Registered: 2007-11-24
Posts: 1322
Reputation: 37
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

like it sooooooo much sis...
thanks for sharing plus reppuuuuuu too :idea:


-buhbye guyzz... im so sorry

#16  2008-06-13 08:24:29

Hoshigaki
» Promoter
Hoshigaki's display avatar
Active Mode
The Scandalers
Registered: 2008-05-20
Posts: 2285
Reputation: 208

Re: [Advance Alert scripts] updated (3 new scripts)

Those Are Really Cool Alerts..
I like the fool thingy :d


Don't Be Afraid to fall for me bcoz i promise
i'll catch you when you do.

+repu is da best thank y0u. j0ke. l0l.
visit my site ^_^

#17  2008-06-13 08:50:48

jeisseldenise
» FriendsterTalker
Warn: Dis Gal Is Crazy..
ReNeGaDeS de Alliance
Location: Here..
Registered: 2008-05-26
Posts: 108
Last visit: 2008-11-15
Reputation: 2
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

thanks i love that wahaha



#18  2008-06-13 09:19:11

vincentcvm123
» FriendsterNewbie
vincentcvm123's display avatar
Registered: 2008-06-13
Posts: 56
Last visit: 2008-06-13
Reputation: ~

Re: [Advance Alert scripts] updated (3 new scripts)

ow.. i love this trick..
i am a fooler :ninja:


Siggy Under Construction

#19  2008-06-13 09:29:48

---xXirukiTepe---
» FriendsterElite
---xXirukiTepe---'s display avatar
Ill Shoot Your Veins >_<
Naruto Fanz-ShinobiElite
Location: KARAKURA TOWN
Registered: 2007-11-01
Posts: 3750
Reputation: 440
Friendster

Re: [Advance Alert scripts] updated (3 new scripts)

Thank you.. Fellas. Lol

;]



Mou Hitori no Kimi e
N ∅ ∑ I N
TRUE: Somebody hacked my other fs account! Grrr! add my new 1

#20  2008-06-14 03:31:30

faivan
» Cursed Member
faivan's display avatar
^.^
Location: durian city
Registered: 2008-05-29
Posts: 75
Last visit: 2008-06-21
Reputation: ~
???

Re: [Advance Alert scripts] updated (3 new scripts)

tnx for sharing.. ^_^

  • JavaScript
  •  » [Advance Alert scripts] updated (3 new scripts)

Search Friendstertalk

Board footer

FriendsterTalk is not affiliated with Friendster.com
Copyright © 2002–2008 PunBB

[ 28 queries - 0.695 second ]

Pay Per Click Ads by pay per click advertising by Kontera

FriendsterTalk.com x

Welcome to FriendsterTalk! You'll need to login in order to fully use all the features and view all the sections of this site.

Please register if you're not yet a member. =)