function getLink(section, newPage) {
	var page = document.location.href;
	page = page.substring(page.lastIndexOf('.com') + 4);
	if(page == "") page = "index.php";
	var link = '<a href="' + newPage + '" class="roll' + section;
	if(document.location.href.indexOf(document.domain + newPage) > -1) {
		if(page != "/store/astro12_members.php") link += '_active';
	}
	link += '"></a>';
	return link;		
}

function getLeftLink(section, newPage) {
	var page = document.location.href;
	page = page.substring(page.lastIndexOf('.com') + 4);
	if(page == "") page = "index.php";
	var link = '<a href="' + newPage + '" class="roll' + section;
	if(document.location.href.indexOf(document.domain + newPage) > -1) {
		if(page != "/store/astro12_members.php") link += '_active';
	}
	if (section == "ownastro12") {
		link += '" target="_blank" ';
		}
	if (section == "wttrailers") {
		link += '" target="_blank" ';
		}
		
	link += '"></a>';
	return link;		
}