function HeaderStatus(){
	
	// For any edits, only change what's in the quotes. Do not delete the quotes!
	
	// If you're not logged in
	if 	(subStatus == ("none")){	//Do not change anything here
		document.write('<a href="http://net.gamespyid.com/linktrack/redirect.aspx?i=9326&t=http%3a%2f%2fwww.fileplanet.com%2fsubscribe%2fsubscribe.shtml" style="color:#fc0;">');	//This is the link
		document.write("Join Today");	//This is the text
		document.write("</a>");	}

	// If you're a Founders Club member
	if	(subStatus == ("FoundersClub")){	//Do not change anything here
		document.write('<a href="http://net.gamespyid.com/linktrack/redirect.aspx?i=10697&t=http%3a%2f%2fwww.fileplanet.com%2fsubscribe%2ffp_upgrade.shtml" style="color:#fc0;">');	//This is the link
		document.write("Upgrade Now");	//This is the text
		document.write("</a>");
		}

	// If you're subscribed, FilePlanet upsell
	if	((subStatus) == ("subscriber")){	//Do not change anything here
		document.write('<a href="http://net.gamespyid.com/linktrack/redirect.aspx?i=10697&t=http%3a%2f%2fwww.fileplanet.com%2fsubscribe%2ffp_upgrade.shtml" style="color:#fc0;">');	//This is the link
		document.write("Upgrade Now");	//This is the text
		document.write("</a>");
	}

	// If you're logged in, but not subscribed to anything
	if	(subStatus == ("registered")){	//Do not change anything here
		document.write('<a href="http://net.gamespyid.com/linktrack/redirect.aspx?i=9326&t=http%3a%2f%2fwww.fileplanet.com%2fsubscribe%2fsubscribe.shtml" style="color:#fc0;">');	//This is the link
		document.write("Join Today");	//This is the text
		document.write("</a>");
	}
}
HeaderStatus();