// JavaScript Document
function modifyURL($url){
	$newUrl = "news-story.php?id="+$url.substring($url.length-4);
	document.location.href=$newUrl;
}
