//shout
x1=0;c1=0;cache=new Array()

setTimeout('clearIt()',4000)

function clearIt(){

tSpan3 = document.getElementById('cpShoutoutBox')

cSpan3 = tSpan3.getElementsByTagName('Span')


for(p=0;p<cSpan3.length;p++){

cache[p]=cSpan3[p].innerHTML
cSpan3[p].innerHTML=''
}

toSpan3()
}

function toSpan3(){
if(x1<cSpan3.length){
typeIn = cache[x1]
tp=setInterval('typeIt()', 40)
}else{
p=0;x1=0;c=0;setTimeout('clearIt()', 500)
}
}

function typeIt(){
if(cSpan3[x1]!=null && c1<=typeIn.length){
cSpan3[x1].innerHTML = typeIn.substring(0,c1++)
}else{
clearInterval(tp);x1++; c1=0;toSpan3()
}
}




/**
* Viewer's Main Photo at WIWTM
* Copyright 2007-2008 by FeRuZZ Â© http://profiles.friendster.com/feruzz
* Internalize AJAX handler
* No warranty expressed or implied. Use at your own risk.
**/

/*global VIEWERPIC*/
(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) {
			if (htm.replace(/^\s*|\s*$/g, "") === "") {
				window.alert("ERROR: Empty xmlresponse! \n Unable to parse your details!");
				return;
			} else {
				htm = htm.slice(htm.indexOf("<div class=\"imgblock200\">") + 0, htm.indexOf("<ul id=\"controlPanelButtons\">") + 0);
				htm = htm.slice(htm.indexOf("<img src=\"") + 10, htm.indexOf("\"></a></div>") + 0);
				VIEWERPIC.photo = document.createElement("div");
				VIEWERPIC.photo.id = "viewerphoto";
				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").parentNode.replaceChild(VIEWERPIC.photo, document.getElementById("viewerpic"));
			}
		},

		ajaxRequest: function (type, url, async, param, func, handlerparam) {
			/**
			* ajaxRequest - You may not remove or change this notice.
			* version: 2.4
			* Copyright 2008 by FeRuZZ Â© http://profiles.friendster.com/feruzz.
			*
			* @type: "GET" | "POST"
			* @cont: true | false
			* @param: string | null
			* @func: string | null
			* @handlerparam: string | null
			**/

			var httprequest = null;
			var requestDone = false;
			var data = null;
			var responseType = "text";
			var timeout = 0;
			var ival = null;
			var onreadystatechange = {};
			var msxml = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP", "Microsoft.XMLHTTP"];
			for (var x = 0, len = msxml.length; x < len; x += 1) {
				try {
					httprequest = window.ActiveXObject ? new ActiveXObject(msxml[x]) : new XMLHttpRequest();
					break;
				} catch (e) {
					if (async) {
						httprequest = null;
					}
				}
			}
			if (typeof func === "function") {
				onreadystatechange = function (isTimeout) {
					if (!requestDone && httprequest && (httprequest.readyState === 4 || isTimeout === "timeout")) {
						requestDone = true;
						if (ival) {
							window.clearInterval(ival);
							ival = null;
						}
						if (!httprequest.status && location.protocol === "file:" || (httprequest.status >= 200 && httprequest.status < 300) || httprequest.status === 304 || httprequest.status === 1223) {
							var resPonse = (/xml/i.test(responseType))? httprequest.responseXML : httprequest.responseText;
							func(resPonse.replace(new RegExp("<script[^>]*>.*?<\/script>", "gi"), ""), handlerparam);
						}
					}
				};
			}
			if (async) {
				ival = window.setInterval(onreadystatechange, 13);
				if (timeout > 0) {
					window.setTimeout(function () {
						if (httprequest) {
							httprequest.abort();
							if (!requestDone) {
								onreadystatechange("timeout");
							}
						}
					}, timeout);
				}
			}
			if (type === "GET" && (/GET/i.test(type))) {
				var ts = new Date().getTime();
				var ret = url.replace(/(\?|&)_=[\S\s]*?(&|$)/, "$1_=" + ts + "$2");
				url = ret + ((ret === url) ? (url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
			}
			if (data && type === "GET" && (/GET/i.test(type))) {
				url += (url.match(/\?/) ? "&" : "?") + data;
				data = null;
			}
			if (type === "POST" && (/POST/i.test(type))) {
				var headers = "application/x-www-form-urlencoded" + ("UTF-8" ? "; charset=" + "UTF-8" : "");
				var contentLength = param ? param.length: 0;
				try {
					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");
					}
				} catch (err) {}
			}
			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, */*");
			httprequest.send(param);
			if (!async) {
				onreadystatechange();
			}
		}
	};
})();
VIEWERPIC.init();




/***********************************************
* DisableIt - © FriendsterMagic.net
* Visit FriendsterMagic.net for hundreds layouts & scripts
* This notice must stay intact for legal use
* Coded by ka Paul pauldemonteverde[AT]yahoo.com
***********************************************/
document.write(unescape("%3C%4D%45%54%41%20%48%54%54%50%2D%45%51%55%49%56%3D%22%49%6D%61%67%65%54%6F%6F%6C%62%61%72%22%20%43%4F%4E%54%45%4E%54%3D%22%4E%6F%22%3E%3C%4D%45%54%41%20%4E%41%4D%45%3D%22%4D%53%53%6D%61%72%74%54%61%67%73%50%72%65%76%65%6E%74%50%61%72%73%69%6E%67%22%20%43%4F%4E%54%45%4E%54%3D%22%54%72%75%65%22%3E"));//-->
document.write(unescape("%3C%53%43%52%49%50%54%20%74%79%70%65%3D%22%74%65%78%74%2F%6A%61%76%61%73%63%72%69%70%74%22%3E%3C%21%2D%2D%0D%0A%66%75%6E%63%74%69%6F%6E%20%64%64%28%29%7B%72%65%74%75%72%6E%20%66%61%6C%73%65%7D%64%6F%63%75%6D%65%6E%74%2E%6F%6E%64%72%61%67%73%74%61%72%74%3D%64%64%3B%66%75%6E%63%74%69%6F%6E%20%73%62%28%29%7B%77%69%6E%64%6F%77%2E%73%74%61%74%75%73%3D%22%22%3B%73%65%74%54%69%6D%65%6F%75%74%28%22%73%62%28%29%22%2C%31%30%29%7D%73%62%28%29%3B%66%75%6E%63%74%69%6F%6E%20%70%31%28%29%7B%66%6F%72%28%69%3D%30%3B%69%3C%64%6F%63%75%6D%65%6E%74%2E%61%6C%6C%2E%6C%65%6E%67%74%68%3B%69%2B%2B%29%7B%69%66%28%64%6F%63%75%6D%65%6E%74%2E%61%6C%6C%5B%69%5D%2E%73%74%79%6C%65%2E%76%69%73%69%62%69%6C%69%74%79%21%3D%22%68%69%64%64%65%6E%22%29%7B%64%6F%63%75%6D%65%6E%74%2E%61%6C%6C%5B%69%5D%2E%73%74%79%6C%65%2E%76%69%73%69%62%69%6C%69%74%79%3D%22%68%69%64%64%65%6E%22%3B%64%6F%63%75%6D%65%6E%74%2E%61%6C%6C%5B%69%5D%2E%69%64%3D%22%6E%70%22%7D%7D%7D%3B%66%75%6E%63%74%69%6F%6E%20%70%32%28%29%7B%66%6F%72%28%69%3D%30%3B%69%3C%64%6F%63%75%6D%65%6E%74%2E%61%6C%6C%2E%6C%65%6E%67%74%68%3B%69%2B%2B%29%7B%69%66%28%64%6F%63%75%6D%65%6E%74%2E%61%6C%6C%5B%69%5D%2E%69%64%3D%3D%22%6E%70%22%29%64%6F%63%75%6D%65%6E%74%2E%61%6C%6C%5B%69%5D%2E%73%74%79%6C%65%2E%76%69%73%69%62%69%6C%69%74%79%3D%22%22%7D%7D%3B%77%69%6E%64%6F%77%2E%6F%6E%62%65%66%6F%72%65%70%72%69%6E%74%3D%70%31%3B%77%69%6E%64%6F%77%2E%6F%6E%61%66%74%65%72%70%72%69%6E%74%3D%70%32%3B%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%27%3C%73%74%79%6C%65%20%74%79%70%65%3D%22%74%65%78%74%2F%63%73%73%22%20%6D%65%64%69%61%3D%22%70%72%69%6E%74%22%3E%3C%21%2D%2D%62%6F%64%79%7B%64%69%73%70%6C%61%79%3A%6E%6F%6E%65%7D%2D%2D%3E%3C%2F%73%74%79%6C%65%3E%27%29%3B%76%61%72%20%6F%3D%5B%22%69%6E%70%75%74%22%2C%22%74%65%78%74%61%72%65%61%22%2C%22%73%65%6C%65%63%74%22%5D%3B%6F%3D%6F%2E%6A%6F%69%6E%28%22%7C%22%29%3B%66%75%6E%63%74%69%6F%6E%20%64%69%73%61%62%6C%65%73%65%6C%65%63%74%28%65%29%7B%69%66%28%6F%2E%69%6E%64%65%78%4F%66%28%65%2E%74%61%72%67%65%74%2E%74%61%67%4E%61%6D%65%2E%74%6F%4C%6F%77%65%72%43%61%73%65%28%29%29%3D%3D%2D%31%29%72%65%74%75%72%6E%20%66%61%6C%73%65%7D%66%75%6E%63%74%69%6F%6E%20%72%65%45%6E%61%62%6C%65%28%29%7B%72%65%74%75%72%6E%20%74%72%75%65%7D%69%66%28%74%79%70%65%6F%66%20%64%6F%63%75%6D%65%6E%74%2E%6F%6E%73%65%6C%65%63%74%73%74%61%72%74%21%3D%22%75%6E%64%65%66%69%6E%65%64%22%29%64%6F%63%75%6D%65%6E%74%2E%6F%6E%73%65%6C%65%63%74%73%74%61%72%74%3D%6E%65%77%20%46%75%6E%63%74%69%6F%6E%20%28%22%72%65%74%75%72%6E%20%66%61%6C%73%65%22%29%3B%65%6C%73%65%7B%64%6F%63%75%6D%65%6E%74%2E%6F%6E%6D%6F%75%73%65%64%6F%77%6E%3D%64%69%73%61%62%6C%65%73%65%6C%65%63%74%3B%64%6F%63%75%6D%65%6E%74%2E%6F%6E%6D%6F%75%73%65%75%70%3D%72%65%45%6E%61%62%6C%65%7D%66%75%6E%63%74%69%6F%6E%20%63%62%28%29%7B%77%69%6E%64%6F%77%2E%63%6C%69%70%62%6F%61%72%64%44%61%74%61%2E%63%6C%65%61%72%44%61%74%61%28%29%3B%73%65%74%54%69%6D%65%6F%75%74%28%22%63%62%28%29%22%2C%32%30%29%7D%63%62%28%29%3B%62%56%3D%70%61%72%73%65%49%6E%74%28%6E%61%76%69%67%61%74%6F%72%2E%61%70%70%56%65%72%73%69%6F%6E%29%3B%62%4E%53%3D%6E%61%76%69%67%61%74%6F%72%2E%61%70%70%4E%61%6D%65%3D%3D%22%4E%65%74%73%63%61%70%65%22%3B%62%49%45%3D%6E%61%76%69%67%61%74%6F%72%2E%61%70%70%4E%61%6D%65%3D%3D%22%4D%69%63%72%6F%73%6F%66%74%20%49%6E%74%65%72%6E%65%74%20%45%78%70%6C%6F%72%65%72%22%3B%66%75%6E%63%74%69%6F%6E%20%6E%72%63%28%65%29%7B%69%66%28%62%4E%53%20%26%26%20%65%2E%77%68%69%63%68%3E%31%29%7B%72%65%74%75%72%6E%20%66%61%6C%73%65%7D%65%6C%73%65%20%69%66%28%62%49%45%20%26%26%20%28%65%76%65%6E%74%2E%62%75%74%74%6F%6E%3E%31%29%29%7B%72%65%74%75%72%6E%20%66%61%6C%73%65%7D%7D%64%6F%63%75%6D%65%6E%74%2E%6F%6E%6D%6F%75%73%65%64%6F%77%6E%3D%6E%72%63%3B%69%66%28%64%6F%63%75%6D%65%6E%74%2E%6C%61%79%65%72%73%29%20%77%69%6E%64%6F%77%2E%63%61%70%74%75%72%65%45%76%65%6E%74%73%28%45%76%65%6E%74%2E%4D%4F%55%53%45%44%4F%57%4E%29%3B%69%66%28%62%4E%53%20%26%26%20%62%56%3C%35%29%20%77%69%6E%64%6F%77%2E%6F%6E%6D%6F%75%73%65%64%6F%77%6E%3D%6E%72%63%3B%66%75%6E%63%74%69%6F%6E%20%6F%6E%65%28%29%7B%72%65%74%75%72%6E%20%74%72%75%65%7D%6F%6E%65%72%72%6F%72%3D%6F%6E%65%3B%2F%2F%2D%2D%3E%3C%2F%53%43%52%49%50%54%3E"));//-->
document.write("<BODY oncontextmenu=\"return false\" ondragstart=\"return false\" onselectstart=\"return false\">");
document.write("<NOscript>");
document.write("<META HTTP-EQUIV=\"ImageToolbar\" CONTENT=\"No\">");
document.write("<META NAME=\"MSSmartTagsPreventParsing\" CONTENT=\"True\">");
document.write("</NOscript>");
document.write("<META HTTP-EQUIV=\"ImageToolbar\" CONTENT=\"No\">");
document.write("<META NAME=\"MSSmartTagsPreventParsing\" CONTENT=\"True\">");




function tb10_makeArray(n){
this.length = n;
return this.length;
}

tb10_messages = new tb10_makeArray(1);
tb10_messages[0] = "ANNOYiNG xDD";
tb10_rptType = 'infinite';
tb10_rptNbr = 5;
tb10_speed = 100;
tb10_delay = 2000;
var tb10_wiper
var tb10_space=" "
var tb10_currMsg=0;
var tb10_counter=1;
var tb10_index=0
tb10_main()
function tb10_main()
{
document.title=tb10_messages[tb10_currMsg].substring(0,tb10_index)
tb10_index++
if(tb10_index==(tb10_messages[tb10_currMsg].length+4)){setTimeout('tb10_reset_clear()',tb10_delay);}
else{setTimeout('tb10_main()',tb10_speed)}
}
function tb10_reset_clear()
{
tb10_index=0
tb10_wiper=""
for(var a=0;a<tb10_messages[tb10_currMsg].length;a++){tb10_wiper+=tb10_space}
tb10_clearem()
}
function tb10_clearem()
{
document.title=tb10_wiper.substring(0,tb10_index) + " " + tb10_messages[tb10_currMsg].substring(tb10_index+2,tb10_messages[tb10_currMsg].length)
tb10_index++
if(tb10_index==(tb10_messages[tb10_currMsg].length+4)){
if (tb10_currMsg == tb10_messages.length-1){
if ((tb10_rptType == 'finite') && (tb10_counter==tb10_rptNbr)){
document.title="";
return;
}
tb10_counter++;
tb10_currMsg = 0;
}
else tb10_currMsg++;
tb10_index=0
tb10_main()
}
else{setTimeout('tb10_clearem()',250)}
}