﻿// JScript File

var tempTop=null;
var spanList=document.getElementsByTagName('SPAN')
for(var i=0;i<spanList.length;i++)
{
	if(spanList[i].className=='btnSpan')
	{
		var spanX=spanList[i]
		spanX.style.cursor='hand';
		spanX.style.backgroundColor='yellow';
		spanX.style.display='inline';
		spanX.padding='3px';
		spanX.onmouseover=function(){this.style.backgroundColor='gold';this.style.textDecoration='underline'}
		spanX.onmouseout=function(){this.style.backgroundColor='yellow';this.style.textDecoration='none'}
		spanX.onclick=function()
		{/*
			try
			{
				if(member_varified==true){}
			}
			catch(e)
			{
				window.location='<%=sol.url%>?stage=first_checkpassword&viewonly=yes';
				return false;
			}*/
			var ulQ=document.getElementsByTagName('DIV');
			for(var i=0;i<ulQ.length;i++)
			{
				if(ulQ[i].className=='hiddenDiv')
					if(ulQ[i].id!=this.link)
					ulQ[i].style.display='none';
			}
			var objX=document.getElementById(this.link);
			//tempTop=objX.offsetTop
			objX.style.display=(objX.style.display=='block')?'none':'block';
			//if(objX.offsetTop==-1)
			//document.body.scrollTop=tempTop
			//else
			//document.body.scrollTop=objX.offsetTop;
			//this.blur();
		}
	}
}