
<!--
       
        if (document.images) {
            career_on = new Image(); 
            career_on.src ="images/career_on.gif";
            visitors_on = new Image(); 
            visitors_on.src ="images/visitors_on.gif";
            lbs_on = new Image(); 
            lbs_on.src ="images/lbs_on.gif";
		
            career_off = new Image(); 
            career_off.src ="images/career_off.gif";
            visitors_off = new Image(); 
            visitors_off.src ="images/visitors_off.gif";
            lbs_off = new Image(); 
            lbs_off.src ="images/lbs_off.gif";
			
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_on.src");

        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_off.src");

        }
}

// -->


<!--

var img1 = "images/random6.gif"
var img2 = "images/random7.gif"
var img3 = "images/random8.gif"
var img4 = "images/random9.gif"
var img5 = "images/random10.gif"

var randomize = Math.round(Math.random()*5)

if (randomize == 1){
newimg = img1
}else if (randomize == 2){
newimg = img2
}else if (randomize == 3){
newimg = img3
}else if (randomize == 4){
newimg = img4
}else{
newimg = img5
}

//-->

<!--

var imga = "images/front01.jpg"
var imgb = "images/front02.jpg"
var imgc = "images/front03.jpg"
var imgd = "images/front04.jpg"
var imge = "images/front05.jpg"
var imgf = "images/front06.jpg"
var imgg = "images/front07.jpg"

var randomize = Math.round(Math.random()*7)

if (randomize == 1){
newimg2 = imga
}else if (randomize == 2){
newimg2 = imgb
}else if (randomize == 3){
newimg2 = imgc
}else if (randomize == 4){
newimg2 = imgd
}else if (randomize == 5){
newimg2 = imge
}else if (randomize == 6){
newimg2 = imgf
}else{
newimg2 = imgg
}

//-->



<!--
dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
now = new Date
// -->

<!-- Original:  Nannette Thacker -->
<!-- http://www.shiningstar.net -->
<!-- Begin
function checkNumeric(objName,minval, maxval,comma,period,hyphen)
{
	var numberfield = objName;
	if (chkNumeric(objName,minval,maxval,comma,period,hyphen) == false)
	{
		numberfield.select();
		numberfield.focus();
		return false;
	}
	else
	{
		return true;
	}
}

function chkNumeric(objName,minval,maxval,comma,period,hyphen)
{
// only allow 0-9 be entered, plus any values passed
// (can be in any order, and don't have to be comma, period, or hyphen)
// if all numbers allow commas, periods, hyphens or whatever,
// just hard code it here and take out the passed parameters
var checkOK = "0123456789.-" + comma + period + hyphen;
var checkStr = objName;
var allValid = true;
var decPoints = 0;
var allNum = "";

for (i = 0;  i < checkStr.value.length;  i++)
{
ch = checkStr.value.charAt(i);
for (j = 0;  j < checkOK.length;  j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch != ",")
allNum += ch;
}
if (!allValid)
{	
alertsay = "Please enter only these values \""
alertsay = alertsay + checkOK + "\" in the \"" + checkStr.name + "\" field."
alert(alertsay);
return (false);
}

// set the minimum and maximum
var chkVal = allNum;
var prsVal = parseInt(allNum);
if (chkVal != "" && !(prsVal >= minval && prsVal <= maxval))
{
alertsay = "Please enter a value greater than or "
alertsay = alertsay + "equal to \"" + minval + "\" and less than or "
alertsay = alertsay + "equal to \"" + maxval + "\" in the \"" + checkStr.name + "\" field."
alert(alertsay);
return (false);
}
}

function openDisclaimer() {
window.open('../disclaimer.cfm','disclaimerWin','toolbar=no,scrollbars=no,width=350,height=232')
}

// -->

/* BEGIN OPEN CALC SCRIPT */
function openCalc(url) {
	window.open(url,'','width=600,height=600,left=100,top=50,scrollbars=yes,resizable=yes');
}

function openWin() {
window.open('http://www.livingbalancesheet.com/client/WellesleyFinancialGroup_web/Clients_webHi.htm','newWin','toolbar=no,scrollbars=no,width=1010,height=640')
}

function openWin2() {
window.open('http://www.livingbalancesheet.com/client/WellesleyFinancialGroup_web/Recruitment_webHi.htm','newWin','toolbar=no,scrollbars=no,width=1010,height=640')
}

