function openWindow(page, w, h) {
	var width = w || 490;
	var height = h || 600;
	var config = ('width=' + width + ',height=' + height + ',top=' + ((screen.availHeight - height)/2) + ',left=' + ((screen.availWidth - width)/2) + ',status=no,location=no,directories=no,menubar=no,resizable=no,scrollbars=yes,toolbar=no');
	window.open(page,'',config);
}

function updateLegal(legal) {

	var golfLegal = '<strong>NO PURCHASE NECESSARY</strong>. A PURCHASE WILL NOT INCREASE YOUR CHANCES OF WINNING. Open only to legal <strong>U.S.</strong> residents who are aged 21 or older at time of entry. Void in <strong>CA</strong> and <strong>PR</strong> and wherever prohibited by law. <a href="javascript:openWindow(\'rules_golf.html\')">Click here for Complete Official Rules</a>, details and odds of winning. Sweepstakes begins on or about <strong>MAY 1, 2007</strong>, and ends on <strong>JANUARY 4, 2008</strong>.';
	var holidayLegal = '<strong>NO PURCHASE NECESSARY</strong>. A PURCHASE WILL NOT INCREASE YOUR CHANCE OF WINNING. Open to legal residents of the <strong>U.S.</strong> who are aged 21 or older at time of entry. Void in <strong>CA</strong> and <strong>PR</strong> and wherever prohibited by law. <a href="javascript:openWindow(\'rules_holiday.html\')">Click here for Complete Official Rules</a>, details, odds of winning, and online entry. Sweepstakes begins on or about 9:00 a.m., Mountain time (MT), on <strong>November 1, 2007</strong>, and ends at 5:00 p.m., MT, on <strong>January 4, 2008</strong>.  Online entries must be received by 5:00 p.m. MT on January 4, 2008. Mail-in entries must be postmarked by <strong>January 4, 2008, and received by January 11, 2008.</strong>';

	var l = document.getElementById('promoLegal');
	if (legal == "golf") {
		l.innerHTML = golfLegal;
		l.style.display = "block";
	} else if (legal == "holiday") {
		l.innerHTML = holidayLegal;
		l.style.display = "block";		
	} else {
		l.innerHTML = "";
		l.style.display = "none";		
	}
}

/* fired on flash age check */
function onAgeCheck(dobValue, stateValue) {

	/*
	document.getElementById('stpatsPromoLink').style.display = "inline";

	var stPatsForm = document.createElement('form');
	stPatsForm.action = "stpats/index.aspx";
	stPatsForm.method = "post";
	
	var dob = document.createElement('input');
	dob.type = "hidden";
	dob.name = "dob";
	dob.value = dobValue;
	stPatsForm.appendChild(dob);
	
	var state = document.createElement('input');
	state.type = "hidden";
	state.name = "state";
	state.value = stateValue;
	stPatsForm.appendChild(state);	
	document.body.appendChild(stPatsForm);
	
	document.getElementById('stpatsPromoSubmit').onclick = function() {
		stPatsForm.submit();
	}
	*/
}