// JavaScript Document
<!--
function setDobGlobs(n,v)
	{	//Begin loading DOB Global Variables
	if (n=="birthmonth")	g_monb=v*1;	// replaced parseInt(v) w/ v*1 because it didn't work for 8, 9
	if (n=="birthdate") 	g_dtob=v*1; // replaced parseInt(v) w/ v*1 because it didn't work for 8, 9
	if (n=="birthyear") 	g_yrob=v*1; // replaced parseInt(v) w/ v*1 because it didn't work for 8, 9
	}	//End loading DOB Global Variables
// -->
