function openResources()
{
	thisurl = location.href;
	newurl = "resources.php";
	if (thisurl.indexOf('hrservices') > 0)
	{newurl = newurl + "?open&s=hr";}
	if (thisurl.indexOf('recruiting') > 0)
	{newurl = newurl + "?open&s=re";}
	if (thisurl.indexOf('storytelling') > 0)
	{newurl = newurl + "?open&s=st";}	
	window.location.href = newurl;
}