function dwnlProduct(dwnlLoc, dwnlState) {
	if(dwnlState == 1) {
		location = dwnlLoc;		
	} else {
		alert("Sorry you can't download this product.\nContact the master for more info.");
	}
}

function SDiv(mDiv) {
	if (document.getElementById){
		mDiv = document.getElementById(mDiv);
		if(getCookie()=="false"){
			mDiv.className = "sdiv";
			document.cookie = "isopen=true";
		} else {
			mDiv.className = "hdiv";
			document.cookie = "isopen=false";
		}
	}
}

function getCookie() {
	myCookie = document.cookie;
	myString = myCookie.substring(7,myCookie.length);
	return myString;
}


function changeMonth(TheMonth) {
	document.chmonth.submit();
}
