
function applyAdvertisersForm(id)
{

	if(document.getElementById("country") && location.href.indexOf("advertisers.php") > 0)
	{
		document.getElementById("country").onchange = function()
		{
			document.forms.advertisers.action = "advertisers.php?action=modify";
			document.forms.advertisers.submit();
		}
	}
	if(document.getElementById("county") && location.href.indexOf("advertisers.php") > 0)
	{
		document.getElementById("county").onchange = function()
		{
			document.forms.advertisers.action = "advertisers.php?action=modify";
			document.forms.advertisers.submit();
		}
	}

}

function applyRegistrationForm(id)
{

	if(document.getElementById("country") && location.href.indexOf("registration.php") > 0)
	{
		document.getElementById("country").onchange = function()
		{
			document.forms.registration.action = "registration.php?action=modify";
			document.forms.registration.submit();
		}
	}

}

function xternalLinks()
{
	arr = document.getElementsByTagName("a");
	
	for(i=0; i<arr.length; i++)
	{
		if(arr[i].className && arr[i].className == "xternal")
			arr[i].setAttribute("target", "_blank");
	}
}

function startUp()
{
	xternalLinks();
	applyHighLights();
	searchDates();
	applyAdvertisersForm();
	applyRegistrationForm();
	replaceHeadlines();
	macHack();
}

var section = "home";
window.onload = startUp;
