View Single Post
Old 03-21-2005, 10:33 AM   #3 (permalink)
office politics
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,425

office politics will become famous soon enough

Default

i modeled after an example at http://www.w3schools.com/vbscript/tr...=vbdemo_elseif

Code:
function greeting()
i=hour(time)
If i = 10 then
	document.write("Just started...!")
elseif i = 11 then
	document.write("Hungry!")
elseif i = 12 then
	document.write("Ah, lunch-time!")
elseif i = 16 then
	document.write("Time to go home!")
else
	document.write("Unknown")
end if
end function

office politics is offline