function navtabon(link)
{
		idoff = 'navoff';					
		idhover = 'navhover';

	if (document.getElementById(link).className == idoff)
	{
		document.getElementById(link).className = idhover;
	}
}

function navtaboff(link)
{  
		idoff = 'navoff';
		idhover = 'navhover';		

	if (document.getElementById(link).className == idhover)
	{
		document.getElementById(link).className = idoff;
	}
}
       

function _set_cookie(name, value, expires) {
	document.cookie = name + "=" + escape(value) + ((expires) ? ("; expires=" + expires.toGMTString()) : "") + "; path=/" ;
}

function strict( ptr, max )
{
	if (ptr.value.length > max ) ptr.value = ptr.value.substring(0,max);
}