/*
function svis(oid){//Switch Visibility
	(oid.style.display=='none') ? oid.style.display='block' : oid.style.display='none';
}
*/
function getElementPosition(element){
	var offsetTrail = element;
	var offsetLeft = 0;
	var offsetTop = 0;
	while(offsetTrail){
		offsetLeft += offsetTrail.offsetLeft;
		offsetTop += offsetTrail.offsetTop;
		offsetTrail = offsetTrail.offsetParent;
	}
	if (navigator.userAgent.indexOf('Mac') != -1 && typeof document.body.leftMargin != 'undefined'){
		offsetLeft += document.body.leftMargin;
		offsetTop += document.body.topMargin;
	}
	//alert(offsetLeft+' '+offsetTop);
	return {left:offsetLeft,top:offsetTop};
}


function openpmOLD(username,id){
	window.open('/test_w_pm.html?user=' + username + '&id=' + id,username,'width=300,height=270,resizable,location');
	return false;
}

function openpm(id){
	wname='id' + id;
	window.open('/test_w_pm.html?id=' + id,wname,'width=320,height=270,resizable,location');
	return false;
}

function openmsg(username,subject){
	window.open('/message.html?dest=' + username + '&subj=' + subject,'message','width=350,height=340,left=300,top=200,resizable');
	return false;
}


function svis(oid){
	e=document.getElementById(oid);
	e.style.display=(e.style.display=='none')?'block':'none';
	return false;
}
