//Welcome to this javascript code, if you see this you're probably one frustrated wannabe webmaster :)
//Don't copy the exact code ;) first try it yourself, then copy paste this code in your myspace turnkey site :p
//Have fun

clicks = new Array()
function hover(el) {
el.style.border = "1px solid #ff0000";

}
function wind(el) {
el.style.border = "0px solid #ff0000";
}
function hit(el) {
var opacity = 30;
//check if in array
var i= 0; var a=0;
while (clicks[i]) {
if (clicks[i] == el.alt) { clicks[i] = null; var a=1; up(el); }
i++;
}
if (a != 1) {
if ( (navigator.appName.indexOf("Netscape")!=-1) && (parseInt(navigator.appVersion)>=5) ) {
    el.style.MozOpacity=opacity/100
}
 else if  ( (navigator.appName.indexOf("Microsoft")!= -1) && (parseInt(navigator.appVersion)>=4) ){
    //el.filters.alpha.opacity=opacity
el.filters.alpha.opacity=50
}
clicks.push(el.alt);
}
}
function up(el){
if ( (navigator.appName.indexOf("Netscape")!=-1) && (parseInt(navigator.appVersion)>=5) ) {
    	el.style.MozOpacity=1
		}
 	else if  ( (navigator.appName.indexOf("Microsoft")!= -1) && (parseInt(navigator.appVersion)>=4) ){
    el.filters.alpha.opacity=100
	}
}
function prepare() {
//loop through array and find what we want to hide
var out = "";
var j = 0;
while (clicks[j]) {
if (clicks[j] == "picture") { out += "<br /><strong>To Hide Your Info Next To Pic</strong>: In SAFE MODE, Place The Following Code Into Your \"Headline\" Section.<br />&lt;a class=&quot;off&quot;&gt;";
}
if (clicks[j] == "contact") { out += "<br /><strong>Hide Contact Table</strong><br />Place the following code into your &quot;About Me&quot; section of your profile <br />&lt;style type=&quot;text/css&quot;&gt;.contactTable { display: none }&lt;/style&gt;";
}
if (clicks[j] == "url") { out += "<br /><strong>Hide URL Box </strong><br />Place the following code into your &quot;About Me&quot; section of your profile<br />&lt;style type=&quot;text/css&quot;&gt;body table tbody table tbody table tbody table table div strong{display: none;}body table tbody table tbody table tbody table td div {visibility: hidden}<br/>body table tbody table tbody table tbody table td, body table tbody table tbody table tbody td {background: transparent;}<br/>table table table table div {visibility:hidden;}<br/>div table table table table table div input, div a, td.text div {visibility:visible;}<br/>.contactTable {background: rgb(102, 153, 204); position: relative; top: 30px;}.contactTable table {background: rgb(255, 255, 255);}&lt;/style&gt;";
}
if (clicks[j] == "details") { out += "<br /><strong>Hide Contact Table</strong><br />Place the following code into your &quot;About Me&quot; section of your profile <br />&lt;style type=&quot;text/css&quot;&gt;.contactTable { display: none }&lt;/style&gt;";
}
if (clicks[j] == "network") { out += "<br /><strong>Hide Extended Network</strong><br />Place the following code into your &quot;About Me&quot; section of your profile <br />&lt;style type=&quot;text/css&quot;&gt;table td table tr td.text table {visibility:hidden;}table td table tr td.text table table, table td table tr td.text table table td.text {visibility:visible;}&lt;/style&gt;";
}
if (clicks[j] == "blog") { out += "<br /><strong>Hide Blog Section</strong><br />Place the following code into your &quot;About Me&quot; section of your profile<br />&lt;style type=&quot;text/css&quot;&gt;table td table tr td.text table {visibility:hidden;}table td table tr td.text table table, table td table tr td.text table table td.text {visibility:visible;}&lt;/style&gt;";
}
if (clicks[j] == "aboutme") { out += "<br /><strong>Hide About Me Section</strong><br />There is no code to hide the About Me section.";
}
if (clicks[j] == "meet") { out += "<br /><strong>Hide Who I'd Like To Meet</strong><br />Place the following code at the end of your &quot;About Me&quot; section.<br />&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table style=&quot;display:none&quot;&gt;&lt;tr&gt;&lt;td&gt;";
}
if (clicks[j] == "friends") { out += "<br /><strong>Hide Friends Section</strong><br />Place the following code at the end of your &quot;About Me&quot; section.<br />&lt;style type=&quot;text/css&quot;&gt;d.text td.text table table table,td.text td.text table br,td.text td.text table .orangetext15,td.text td.text .redlink,td.text td.text span.btext{display:none;}td.text td.text table {background-color:transparent;}td.text td.text table td, td.text td.text table {height:0;padding:0;border:0;}td.text td.text table table td {padding:3;}td.text td.text table table br {display:inline;}td.text td.text table td {font-size:0pt;}td.text td.text {height:0;}td.text td.text table b, td.text td.text table table td {font-size:8pt;}&lt;/style&gt;";
}
if (clicks[j] == "comments") { out += "<br /><strong>Hide Comments</strong><br />Place this code at the very end of your &quot;Who I'd Like To Meet&quot; section. <br />You may need to adjust the 400 if some of the comments are still showing or if your friends are being cut off.<br />&lt;div style=&quot;position:relative; height:400px; overflow:hidden; border:0px;&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;";
}
j++;
}
document.getElementById("output").innerHTML = out;
}