// JavaScript Document

function writeDate() {
	dothis = new Date();
	month = dothis.getMonth();
	month = (month * 1) + 1;
	day = dothis.getDate();
	year = dothis.getFullYear();
	
	document.write(" ",month,"/",day,"/",year," ");
}
	
function makeSure(url){
	var r=confirm('Are you sure?');
		if (r == true) {
			//alert(url);
			location.href=url;
		}
}

function showArticle(page) {
	document.getElementById("article").innerHTML=page;
		
}
