
function showHide(theLink, theLi, theDiv){
	if(document.getElementById(theDiv).style.display != 'block'){
		document.getElementById(theDiv).style.display = 'block';
		document.getElementById(theLi).style.backgroundImage = 'url(/images/bg-eligility-li-open.gif)';
		document.getElementById(theLi).style.backgroundColor = '#f3f9d0';
		theLink.style.backgroundImage = 'url(/images/bg-eligility-a-open.gif)';
	} else {
		document.getElementById(theDiv).style.display = 'none';
		document.getElementById(theLi).style.backgroundImage = 'url(/images/bg-eligility-li-closed.gif)';
		document.getElementById(theLi).style.backgroundColor = 'transparent';
		theLink.style.backgroundImage = 'url(/images/bg-eligility-a-closed.gif)';
	}
}
function fbs_click() {
	u=location.href;
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
}