// Tip Box Display, version 1.0
// Bontrager Connection, LLC
// http://www.willmaster.com/
// -> Functions findPosX and findPosY by
// Peter-Paul Koch & Alex Tingle at
// http://www.quirksmode.org/js/findpos.html and
// http://blog.firetree.net/2005/07/04/javascript-find-position/
//
// One customization:
//
// Specify the ID of the DIV or other container that is the tip box.
var TipBoxID = "TipBox";
// No other customizations required
// // // // // // // // // // // //
var tip_box_id;
function findPosX(obj)
{
var curleft = 0;
if(obj.offsetParent)
while(1)
{
curleft += obj.offsetLeft;
if(!obj.offsetParent)
break;
obj = obj.offsetParent;
}
else if(obj.x)
curleft += obj.x;
return curleft;
}
function findPosY(obj)
{
var curtop = 0;
if(obj.offsetParent)
while(1)
{
curtop += obj.offsetTop;
if(!obj.offsetParent)
break;
obj = obj.offsetParent;
}
else if(obj.y)
curtop += obj.y;
return curtop;
}
function DisplayTip(me,offX,offY,content) {
var tipO = me;
tip_box_id = document.getElementById(TipBoxID);
var x = findPosX(me);
var y = findPosY(me);
tip_box_id.style.left = String(parseInt(x + offX) + 'px');
tip_box_id.style.top = String(parseInt(y + offY) + 'px');
tip_box_id.innerHTML = content;
tip_box_id.style.display = "block";
tipO.onmouseout = HideTip;
} // function DisplayTip()
function HideTip() { tip_box_id.style.display = "none"; }
Salthan Calendar System
Salthans use a different calander than the standard human calendar. The Salthan calendar begins on the spring equinox (around March 20th), and is divided into 15 months, the first 14 months each having 5 weeks with 5 days each in them, totaling 25 days in a month. The last month only has 3 weeks, and 15 days total is is considered outside of the year.
Because of this change, certin days do not directly corospond to the human calender systems, and dates on one may change on the other from year to year.
| |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
| 1 |
Mar 20
|
April 14 |
May 9 |
June 3 |
June 28 |
July 23 |
Aug 17 |
Sept 1 |
Oct 6 |
Nov 1 |
Nov 26 |
Dec 21 |
Jan 15 |
Feb 9 |
Mar 6 |
| 2 |
21 |
15 |
10 |
4 |
29 |
24 |
18 |
2 |
7 |
2 |
27 |
22 |
16 |
10 |
7 |
| 3 |
22 |
16 |
11 |
5 |
30 |
25 |
19 |
3 |
8 |
3 |
28 |
23 |
17 |
11 |
8 |
| 4 |
23 |
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
24 |
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
25 |
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
26 |
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
27 |
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
28 |
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
29 |
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
30 |
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
31 |
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
April 1 |
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
2 |
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Comments (0)
You don't have permission to comment on this page.