<!--
	function overclass()
	{
		this.className = "bgright";
		this.parentNode.className = "bgleft";
	}	
	
	function outclass()
	{
		this.className = "navcolor";
		this.parentNode.className = "";
	}
	
	function subLogin()
	{
		var formel = document.getElementById('login');
		
		var ins = formel.getElementsByTagName('INPUT');
		if(ins[0].value == "")
		{
			alert('Please enter a username');
			return false;
		}
		
		if(ins[1].value == "")
		{
			alert('Please enter a password');
			return false;
		}
		
		if(this.id = 'lb')
			formel.submit();
		else
			return true;
	}
	
	function setDays(fors)
	{
		var setmonth, setyear, thepathm, thepathd;
		var numdays;
		
			thepathm = document.getElementById('expm');
			thepathd = document.getElementById('expd');
			setyear = document.getElementById('expy').value;
			
		setmonth = thepathm.value;
		numdays = getDaysPerMon(setmonth, setyear);
		thepathd.length = numdays;
		for(i = 28;i < thepathd.length;i++)
		{
			thepathd.options[i].text=i+1;
		}
		
	}
	
	function getDaysPerMon(monthnum, yearnum)
	{
		var dn = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
		var numdays = dn[monthnum-1];
		if(monthnum == 2 && (yearnum % 4) == 0)
		{
			numdays++;
		} 
		return numdays;
	}
-->
