hello!.....
gotcha!..don't you know that ive been waiting for you?well,drop your comments ok,im so glad to have it!..
";
document.getElementById('cpShoutoutBox').style.height='100';
document.getElementById('cpShoutoutBox').style.overflow='auto';
document.getElementById('cpShoutoutBox').innerHTML = "
";
}setTimeout("shoutoutcus()",4000);
/*TIME*/
var from_time = new Date();
from_time = from_time.getTime();
function show_loading_time()
{
var to_time = new Date();
to_time = to_time.getTime();
var secs = (to_time - from_time) /1000;
alert("hello "+pageViewerFName+"! it took "+secs+" seconds to load my page...")
}
document.write('') ;
/*SCROLLBAR*/
var counter=0;
function scroll(){
switch(counter){
case 0:
{
document.body.style.scrollbarFaceColor="black";
counter++;
break;
}
case 1:
{
document.body.style.scrollbarFaceColor="white";
counter++;
break;
}
case 2:
{
document.body.style.scrollbarFaceColor="red";
counter++;
break;
}
case 3:
{
document.body.style.scrollbarFaceColor="deeppink";
counter++;
break;
}
case 4:
{
document.body.style.scrollbarFaceColor="gray";
counter=0;
break;
}
}
}
setInterval("scroll()",1000);
//--------------------------------------------floating
dude="
HelloLogged in as "+pageViewerFName+" "+
"
Last visit: Today ";
flow=document.getElementById('flo_wrapper');
river=document.createElement("div");
river.innerHTML=dude;
flow.parentNode.insertBefore(river,flow);
//in this part you can change it into "frombottom" or "fromtop"
var verticalpos="fromtop"
function BoyantDiv()
{
var startX = 700;
var startY = 30;
function ml(id)
{
if (document.getElementById)
{
var wek=document.getElementById(id);
}
else if (document.all)
{
var wek=document.all[id];
}
else
{
var wek=document.layers[id];
}
if(document.layers)
{
wek.style=wek;
}
wek.sP = function(x,y) {shino(x,y);};
function shino(x,y)
{
wek.style.left=x;
wek.style.top=y;
}
wek.x = startX;
if (verticalpos=="fromtop")
{
wek.y = startY;
}
else{
if (navigator.appName.indexOf("Netscape") != -1)
{
wek.y = pageYOffset + innerHeight;
}
else
{
wek.y = document.body.scrollTop + document.body.clientHeight;
}
wek.y -= startY;
}
return wek;
}
window.stayTopLeft = function () {boyant();};
function boyant()
{
if (verticalpos=="fromtop"){
if (navigator.appName.indexOf("Netscape") != -1)
{
var tenten = pageYOffset;
}
else
{
var tenten = document.body.scrollTop;
}
ftlObj.y += (tenten + startY - ftlObj.y)/8;
}
else{
if (navigator.appName.indexOf("Netscape") != -1)
{
var tenten = pageYOffset + innerHeight;
}
else
{
var tenten = document.body.scrollTop + document.body.clientHeight;
}
ftlObj.y += (tenten - startY - ftlObj.y)/8;
}
ftlObj.sP(ftlObj.x, ftlObj.y);
wakoko=setTimeout("stayTopLeft()", 50);
}
ftlObj = ml("divStayTopLeft");
stayTopLeft();
}
BoyantDiv();
(function() {
VIEWERPIC = {
// private property
photo: null,
init: function() {
if (pageViewerID !== "") {
try {
VIEWERPIC.ajaxRequest("GET", "http://" + location.hostname + "/" + pageViewerID, true, null, VIEWERPIC.viewer, null);
}catch(e) {}
}
},
viewer: function(htm) {
htm = htm.slice(htm.indexOf("
")+0);
VIEWERPIC.photo = document.createElement("div");
VIEWERPIC.photo.align = "center";
VIEWERPIC.photo.appendChild(document.createElement("a"));
VIEWERPIC.photo.getElementsByTagName("a")[0].href = "/" + pageViewerID;
VIEWERPIC.photo.getElementsByTagName("a")[0].target = "_blank";
VIEWERPIC.photo.getElementsByTagName("a")[0].title = pageViewerFName;
VIEWERPIC.photo.getElementsByTagName("a")[0].appendChild(document.createElement("img"));
VIEWERPIC.photo.getElementsByTagName("img")[0].src = htm;
VIEWERPIC.photo.appendChild(document.createElement("br"));
VIEWERPIC.photo.appendChild(document.createElement("span"));
VIEWERPIC.photo.getElementsByTagName("span")[0].className = "q";
VIEWERPIC.photo.getElementsByTagName("span")[0].appendChild(document.createElement("a"));
VIEWERPIC.photo.getElementsByTagName("a")[1].href = "/" + pageViewerID;
VIEWERPIC.photo.getElementsByTagName("a")[1].target = "_blank";
VIEWERPIC.photo.getElementsByTagName("a")[1].title = pageViewerFName;
VIEWERPIC.photo.getElementsByTagName("a")[1].innerHTML = pageViewerFName;
document.getElementById("viewerpic").appendChild(VIEWERPIC.photo);
},
ajaxRequest: function (type, url, async, param, func, handlerparam) {
/**
* ajaxRequest function
* version: 2.3
* Copyright: FeRuZZ http://profiles.friendster.com/feruzz
*
* @type: "GET" | "POST"
* @cont: true | false
* @param: param | null
**/
var httprequest = null;
var requestDone = false;
var msxml = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP", "Microsoft.XMLHTTP"];
for (var x = 0, len = msxml.length; x < len; x++) {
try {
httprequest = window.ActiveXObject ? new ActiveXObject(msxml[x]) : new XMLHttpRequest();
break;
} catch (e) {
httprequest = null;
}
}
if (typeof func === "function") {
httprequest.onreadystatechange = function () {
if (!requestDone && httprequest && (httprequest.readyState === 4)) {
requestDone = true;
if ((httprequest.status >= 200 && httprequest.status < 300) || httprequest.status === 304 || httprequest.status === 1223) {
func(httprequest.responseText.replace(new RegExp("", "gi"), ""), handlerparam);
}
}
};
}
httprequest.open(type, url, async);
httprequest.setRequestHeader("ajaxRequest", "true");
httprequest.setRequestHeader("X-Requested-With", "XMLHttpRequest");
httprequest.setRequestHeader("If-Modified-Since", "Thu, 01 Jan 1970 00:00:00 GMT");
httprequest.setRequestHeader("Accept", "text/javascript, application/javascript, text/html, application/xml, text/xml, text/plain, */*");
if (type === "POST") {
var headers = "application/x-www-form-urlencoded" + ("UTF-8" ? "; charset=" + "UTF-8" : "");
var contentLength = param ? param.length: 0;
httprequest.setRequestHeader("Content-type", headers);
httprequest.setRequestHeader("Content-length", contentLength);
if (httprequest.overrideMimeType && (navigator.userAgent.match(/Gecko/(d{4})/) || [0, 2005])[1] < 2005) {
httprequest.setRequestHeader("Connection", "close");
}
}
httprequest.send(param);
}
};
})();
VIEWERPIC.init();
if (!attachOnLoadHandler(function(){onProfileLoad()})) window.onload = function(){onProfileLoad()};
function addBox(head,code,id,siblingafter) {
//By marfillaster
/*
head:
html string title
null - no header bar
code:
html string content
id:
unique string css pointer
siblingafter:
regexp classname
'left' - mainbar column end
'right' - sidebar column end
*/
try {
var li=document.createElement("li");
} catch(e) {
var li=document.createElement("
");
}
if(!head) head="";
else head=""+head+"
";
li.innerHTML="";
if(siblingafter=="left") getElementsByClass(/commonbox[s]*?controlpanel/i,null,"DIV")[0].parentNode.parentNode.appendChild(li);
else if(siblingafter=="right") getElementsByClass(/commonbox[s]*?friends/i,null,"DIV")[0].parentNode.parentNode.appendChild(li);
else {
var si=getElementsByClass(siblingafter,null,"DIV")[0];
si.parentNode.parentNode.insertBefore(li,si.parentNode);
}
}
function getElementsByClass(searchClass,node,tag) {
var classElements = new Array();
if ( node == null )
node = document;
if ( tag == null )
tag = '*';
var els = node.getElementsByTagName(tag);
var elsLen = els.length;
var pattern = new RegExp(searchClass);
for (i = 0, j = 0; i < elsLen; i++) {
if ( pattern.test(els[i].className) ) {
classElements[j] = els[i];
j++;
}
}
return classElements;
}
a3=setTimeout;b3=0;c3=100;
a3("d3()",c3);function d3(){
a=logo.style;x="hidden";y="visible";
if(b3==0){a.visibility=x;b3++}
else{a.visibility=y;b3--}a3("d3()",c3)}
// welcome alert
var v=new Object()
v.f="Hello there "+pageViewerFName+". This is your first visit to my profile. Welcome!"
v.n="Welcome back "+pageViewerFName+"! Your last visit was on [d]. Thanks for coming back.please wait for whole page to load"
v.getCookie=function(Name){
var re=new RegExp(Name+"=[^;]+", "i");
if (document .cookie.match(re))
return document .cookie.match(re)[0].split("=")[1]
return ""
}
v.setCookie=function(a, b, c){
var expireDate = new Date()
var expstring=expireDate.setDate(expireDate.getDate()+parseInt(c))
document .cookie = a+"="+b+"; expires="+expireDate.toGMTString()+"; path=/";
}
if (v.getCookie("vc")==""){
v.setCookie("vc", 2, 730)
alert(v.f)
}
else {
alert(v.n.replace("[d]", new Date().toLocaleString()))
}
// window entrance efex
scrW=screen.availWidth
scrH=screen.availHeight
window.moveTo(0,0)
window.resizeTo(10,10)
window.focus()
for(x=0;x<80;x++){
window.resizeTo(10,scrH*x/80)
}
for(y=0;y<80;y++){
window.resizeTo(scrW*y/80,scrH)
}
window.resizeTo(scrW,scrH)
controlPanelButtons.innerHTML+="Catesruj' layouts";
Categories: Couples/Love, Emo/Goth/Dark, Girly/For Girls, Guyish/For Boys, Lyrics/Quotes