function Login_Before(){};
function Login_After(){
	if(!F.id("carter")) return location="/";
};
function loginout(){F.call("/action.loginout","",function(){F.tran("login_info","login_tbl");});}
function clr(a){
	a.blur();
	F.tran('divpwd','pwdtbl');
	Control.pwd.reset();F.pop(null,"Find Password:");
	return false
}
function cls(o){o.style.backgroundImage='none'}
function showpwd(v){
	var o=F.id("mypassword"); if(!o) return;
	o.innerHTML=v;
	F.tran("pwdtbl","divpwd");
}
function search(){
	var v=F.id("key").value;
	location=F.urlhead()+".htm"+(v?"?"+escape(v):"");
}
function myTip(e){showTip(this,e);}
function showTip(source,e){
	var o=document.getElementById("popLayer"); if(!o)return;
	var t=source.getAttribute("tip");if(!t) return;
	o.innerHTML=t;
	var x=e?e.clientX:event.clientX,y=e?e.clientY:event.clientY,w=o.offsetWidth,h=o.offsetHeight;
	var left=x+12+w>document.body.clientWidth?x-w-24:x+12,top=y+12+h>document.body.clientHeight?y-h-24:y+12;
	o.style.left=((document.documentElement.scrollLeft||document.body.scrollLeft)+left)+"px";
	o.style.top=((document.documentElement.scrollTop||document.body.scrollTop)+top)+"px";
	if(F.ie)o.filters.Alpha.opacity=0; else o.style.MozOpacity=0;
	fadeOut();
}
var fadeOutTime=null;
function fadeOut(){
	var o=document.getElementById("popLayer");if(!o)return;
	if(fadeOutTime)clearTimeout(fadeOutTime);
	if(o.style.display!="block"){
		if(F.ie)o.filters.Alpha.opacity=0; else o.style.MozOpacity=0;
		o.style.display="block";
	}
	if(F.ie){ if(o.filters.Alpha.opacity>=100) return; o.filters.Alpha.opacity+=5; }
	else{ if(o.style.MozOpacity>=1) return; o.style.MozOpacity=1; }
	fadeOutTime=setTimeout("fadeOut()",5);
}
function fadeIn(){
	var o=document.getElementById("popLayer"); if(!o)return;
	if(F.ie)o.filters.Alpha.opacity=0; else o.style.MozOpacity=0;
	o.style.display="none";
}
function tocookie(){
	var str = "{"
	for(var id in count){
		str += '"' + id + '"' + ":[" + count[id].toString() + "],"
	}
	str = str.substring(0,str.length-1);
	str += "}"
	return str;
}
function counttostring(){
	var str = ""
	for(var id in count){
		str += "[" + count[id].toString() + "]"
	}
	return str;
}
function create(n,v){
	var o=document.createElement("INPUT");
	o.type="hidden";
	o.name=n;
	o.value=v;
	return o;
}