var hintcontainer = null;  
function showhint(obj, txt) {  
	if (hintcontainer==null) {  
		hintcontainer = document.createElement("div");  
		hintcontainer.className="hintstyle";  
	document.body.appendChild(hintcontainer);  
	}  
	obj.onmouseout = hidehint;  
	obj.onmousemove=movehint;  
	hintcontainer.innerHTML=txt;  
}
function closerthingy() {
  window.opener = self;
  window.close();
 }
 
 function GetThis(T, C, U, L)
{
    var targetUrl = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + encodeURIComponent(T)
    + '&c=' + encodeURIComponent(C) + '&u=' + encodeURIComponent(U) + '&l=' + L;
    window.open(targetUrl);
}

function movehint(e) {  
	if (!e) e = event; //line for IE compatibility  
	hintcontainer.style.top =  (e.clientY+document.documentElement.scrollTop+2)+"px";  
	hintcontainer.style.left = (e.clientX+document.documentElement.scrollLeft+10)+"px";  
	hintcontainer.style.display="";  
}  
function hidehint() {  
	hintcontainer.style.display="none";  
}

function CloseCurrentWindow()
{

}

sfHover = function() {
var sfEls = document.getElementById("navigation").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function both()
{
    window.opener = top;
    window.open('', '_parent', '');
    window.close();
self.close();
}