//date detection
function getCalendarDate() {
	var months = new Array(13);
	months[0] = "01";
	months[1] = "02";
	months[2] = "03";
	months[3] = "04";
	months[4] = "05";
	months[5] = "06";
	months[6] = "07";
	months[7] = "08";
	months[8] = "09";
	months[9] = "10";
	months[10] = "11";
	months[11] = "12";
	var now = new Date();
	var monthnumber = now.getMonth();
	var monthname = months[monthnumber];
	//var monthday = now.getDate();
	var year = now.getYear();
	if(year < 2000) {
		year = year + 1900;
	}
	//var dateString = monthname + ' ' + monthday + ', ' + year;
	var dateString = year + '_' + monthname;
	return dateString;
}


//for the email and wireless signup link
function popSignup(Loc) {
	/*
	newWindow = window.open(Loc, "newWindow", "toolbar=no, scrollbars=no, directories=no, resizable=yes, menubar=no, width=800, height=600");
	newWindow.focus();
	*/
	window.location = Loc;
}

//for get stuff link
function popGetStuff(Loc) {
	newWindow = window.open(Loc, "newWindow", "toolbar=yes, scrollbars=yes, directories=no, resizable=yes, menubar=yes width=900, height=700");
	newWindow.focus();
}