

function loadStory (basketId, storyId) {

		var targetUrl = "";
		targetUrl = 'http://tisc.planet-f1.com/News/Story_Page/0,16123,thisisnotanoid,00.html';
							
		//this will replace thisisnotanOID with the id passed in

		if (targetUrl.length > 0) {
			targetUrl = targetUrl.replace("thisisnotanoid", basketId + "_" + storyId );
			window.location.href = targetUrl;
		}


}

/*** load index baby ***/
function loadIndex (basketId) {

		var targetUrl = "";
		
		targetUrl = 'http://tisc.planet-f1.com/News/Story_Listing/0,16121,thisisnotanoid,00.html';

		//this will replace thisisnotanOID with the id passed in

		if (targetUrl.length > 0) {
			targetUrl = targetUrl.replace("thisisnotanoid", basketId);
			window.location.href = targetUrl;
		}


}



 
function populateMoreTags(total) {

	for (i=0; i <= total; i++) {
		eval("document.getElementById('moreTag_" + i + "').innerHTML = '&nbsp;&gt;&gt;'");
	}
} 