function print_date()
{	var month=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	var d = new Date();
	d = new Date(d.getTime()+2*(24*60*60*1000));
	document.write(month[d.getMonth()]+" "+d.getDate());
}



// Uniblue tracking code
function setCookie(cookie_name, cookie_value, cookie_days) {
	var today = new Date();
	var cookie_expire = new Date();
	
	if (cookie_days==null || cookie_days==0) {cookie_days=30;}
	cookie_expire.setTime(today.getTime() + 3600000*24*cookie_days);
	
	document.cookie=cookie_name+"="+escape(cookie_value)+";expires="+cookie_expire.toGMTString();
}

// Function to set a download cookie in user's browser
function setDownload() {
	setCookie("__ubd", __uniblue, 100);
}


// Function to set a purchase cookie in user's browser
function setPurchase() {
	setCookie("__ubp", __uniblue, 100);
}


