// JavaScript Document File: sctools.js
/*<!---------------------------------------->
<!---------------SCTip---------------------->
<!------------------------------------------>
/* SCTip provides a pop up tool tip such as shown on the County home page in the news box */
function SCTip(msg) {
	var part1 = "<table class=PopWindowTable cellpadding=0 cellspacing=0><tr><td class=PopWindowTopLeft></td><td class=PopWindowTop></td><td class=PopWindowTopRight></td></tr><tr><td class=PopWindowLeftSide></td><td class=PopWindowCenter><br><table width=90% height=100% align=center><tr><td>";
	var part2 = msg;
	var part3 = "</td></tr></table><br></td><td class=PopWindowRightSide></td></tr><tr><td class=PopWindowBotLeft></td><td class=PopWindowBot></td><td class=PopWindowBotRight></td></tr></table>";
	Tip(part1 + msg + part3);
}
