//BIRTHDATE VERIFIER FUNCTIONS BEGIN

function validateForm(theForm)
{
	good=true;
	 err = "Missing Information:\n";
	if(!theForm.cmbmonth.value) {
		good=false;
        err+="month of birth\n";
	}
	if(!theForm.cmbday.value) {
		good=false;
        err+="day of birth\n";
	}
	if(!theForm.cmbyear.value) {
		good=false;
        err+="year of birth\n";
	}
	if(!theForm.cmname.value) {
		good=false;
        err+="legal name\n";
	}
	err+="You must enter your complete birthdate and e-sign before you continue.";
    if (!good) {
        alert(err);
    };
    return good;
}

//BIRTHDATE VERIFIER FUNCTIONS END

//POPUP FUNCTIONS BEGIN

function PopUpTellFriend(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=260,height=295,left = 500,top = 100');");
}

function PopUpTerms(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=600,left = 0,top = 0');");
}

//POPUP FUNCTIONS END

//BOOKMARK FUNCTIONS BEGIN

window.defaultStatus='';ie=false;ns=false;if(document.all)ie=true;if(document.layers)ns=true;
function setBookMark()
{if(ie)
window.external.AddFavorite('http://www.tslist.com/','Tslist - www.tslist.com');else if(ns)
alert("Sorry, your browser doesn't support the automatic addition of bookmarks, You'll have to bookmark this site manually. Simply Press Ctrl + D on your keyboard");else
alert("Sorry, your browser doesn't support the automatic addition of bookmarks, You'll have to bookmark this site manually. Simply Press Ctrl + D on your keyboard");
}

//BOOKMARK FUNCTIONS END