Function remote(s)
'msgbox s
If s > 36 And s < 41 then 
document.registration(Sel).classname="end"
	if s=40 then

		if Sel ="firstname" then
			Sel="lastname"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus		
		elseif Sel="lastname" then
			Sel="email"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus		
		elseif Sel="email" then
			Sel="password1"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus
		elseif Sel="password1" then
			Sel="password2"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus
		elseif Sel="password2" then
			Sel="reg"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus
		elseif Sel="reg" then
			Sel="reg"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus	
		end if
	elseif s=38 then
		if Sel ="reg" then
			Sel="password2"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus		
		elseif Sel="password2" then
			Sel="password1"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus		
		elseif Sel="password1" then
			Sel="email"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus
		elseif Sel="email" then
			Sel="lastname"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus
		elseif Sel="lastname" then
			Sel="firstname"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus
		elseif Sel="firstname" then
			Sel="firstname"
			document.registration(Sel).classname="start"
			document.registration(Sel).focus			
		end if
	end if
end if
end function

