function getPage(chosen_year, chosen_month, path){
  $temp_loc = (path + "/news/" + chosen_year + "-" + chosen_month + "/");
  document.location = $temp_loc; 
}

function getMonthlyHeadlines(newsYear,newsMonth,path){
	document.location = "/headlines/" + newsYear + "-" + newsMonth + path;
}

function getDailyHeadlines(newsdate){
	 var dates = new Array();
	 dates = newsdate.split('-');
	document.location = "/headlines/" + dates[2] + "-" + dates[1] + "-" + dates[0];
}



function addBookmark() { 
 if (window.sidebar) { 
 		window.sidebar.addPanel("Irish Football Online", "http://www.irishfootballonline.com",""); 
 }
 else if( document.all ) { 
 		window.external.AddFavorite("http://www.irishfootballonline.com","Irish Football Online"); 
 }
 else if( window.opera && window.print ) { 
 		return true; 
 }
}