var months = new Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct', 'Nov','Dec');
function fourdigits(number) { return (number < 1000) ? number + 1900 : number; }

function change_date() {
	var p = document.getElementById('prioritysel').options[document.getElementById('prioritysel').selectedIndex].value;
	var now = new Date();
	now.setDate(now.getDate() + ((p == 'Y')?3:6));
	var disp = months[now.getMonth()]+" "+now.getDate()+", "+(fourdigits(now.getYear()));
	document.getElementById('estShipdate').innerHTML = disp;
}

var xit = false;
if (!g_bUseCatch) { xit = true; }
function on_exit() {
	if (!xit) { 
		xit = true;
		location.href="/index.php?sid=" + g_sSession + "&o=pl&at=Y"
		return "\nDon't miss out on this great offer!!! Just press Cancel to remain on this page and receive your 99 cent Trial!\n\n";
	}
}
window.onbeforeunload = on_exit;

function alertif(s) {  if (s && s.length > 0) alert(s.replace(/\<.*\>/, "")); }