'=======================
'TIPS text and functions
'=======================

Public Tips(7)
Tips(1) = "Sign In or press on Test Tour or Sign Up for an instant password!"
Tips(2) = "Fill in all Program details or click on one of the sample programs to the right!<br>" _
			& "Don’t forget to <strong>Save</strong> to continue…"
Tips(3) = "Create a <strong>New</strong> program, <strong>Update</strong> an old, <strong>Delete</strong> an actual program.<br>" _
			& "By pressing <strong>Send</strong> you send the information as a request.<br>" _
			& "<strong>Continue to Program Tree &raquo;</strong> to build your own program with prices and info…"
Tips(4) = "Click on the <strong>HOTEL</strong> or <strong>DAYS</strong> to expand/close." _
			& " Click item to expand/close/select. Click" _
			& "<img src='../images/tree/hand.gif' align='absmiddle' hspace='4'>" _
			& "to move item between/inside days." _
			& " Selected items has yellow backlight."
Tips(5) = "Click on each category to find alternatives! " _
			& "Click on" _
			& "<img src='../images/tree/d_arrow.gif' align='absmiddle' hspace='4'>" _
			& "to find out more specified price details " _
			& "(look on the new green dialog box). " _
			& "<strong>DETAILS</strong> gives more information and <strong>WEB SITE</strong> takes you to a related website. " _
			& "To move content, press" _
			& "<img src='../images/tree/l_arrow.gif' align='absmiddle' hspace='4'>" _
			& "in front of each item. To activated day on the left side click it to backlight with yellow. " _
			& "Don't forget to <strong>Save</strong> changes!"
Tips(6) = "Menu Bar: <strong>&laquo; Progs</strong> takes you back to the program list. " _
			& "<strong>Calculate</strong> makes basic calculation for your program, " _
			& "<strong>Preview</strong> shows you the final output with pictures, descriptions and prices. " _
			& "<strong>Request</strong> send the program to the destination. " _
			& "<strong>Receive</strong> sends program to your e-mail address. " _
			& "<strong>Collapse Tree</strong> rebuilds root level of program tree. " _
			& "Don't forget to <strong>Save</strong> changes!"
Tips(7) = "Menu Bar: <strong>Dropdown box</strong> changes destination/city. " _
			& "<strong>Collapse Tree</strong> to show main sections only. <strong>Help</strong> gives you some more ideas."

Sub showTips(iTips)
Dim strHTML

	if iTips = 0 then
		strHTML = "&nbsp;"
	else
		strHTML = "<div id='divTips' class='Tips'><strong>TIPS:</strong> " & Tips(iTips) & "</div>"
	end if
	parent.window.frames("frmHead").document.all("clTips").innerHTML = strHTML

end sub
