function ie_NaviOver(id)
{
	var d = document.getElementById(id);
	d.style.backgroundPosition = "0px -64px";
}

function ie_NaviOut(id)
{
	var d = document.getElementById(id);
	d.style.backgroundPosition = "0px -32px";
}

function ie_NaviSet(id)
{
	var d = document.getElementById(id);
	d.style.backgroundPosition = "0px 0px";
}

function ie_checkavail()
{
	domainname = document.getElementById("domainname").value;
	select_id = document.getElementById("extension");
	extension = select_id.options[select_id.selectedIndex].value;
	window.navigate("available.php?domainname=" + domainname + "&extension=" + extension);
}

function ie_noSpam(user,d) {

    locationstring = "mailto:" + user + "@" + d;
    window.location = locationstring;
}

function ie_toggleDisplay(id)
{	
	var e = document.getElementById(id);
	if(e.style.display == "none")
	{
		 e.style.display = "block";
	}
	else
	{ 
		e.style.display = "none";
		var a = document.getElementById(id + "_a");
		var x, y = 0;
		while(a)
		{
			x += a.offsetLeft;
			y += a.offsetTop;
			a = a.offsetParent;
		}
		scroll(x, y);
	}
}

function ie_Show(id)
{	
	var e = document.getElementById(id);
	e.style.display = "inline";
}

function ie_Hide(id)
{	
	var e = document.getElementById(id);
	if(e.style.display == "block")
	{ 
		e.style.display = "none";
	}
}