function showInfo()
{
	var firstRow = new Array("Open Microsoft Outlook and go to the message.", "Open Outlook Express and go to the message.", "Open Mozilla Thunderbird and go to the message.", "Log in to Yahoo Mail and go to the message.", "Login to Gmail and go to the message.", "Login to Hotmail and go to the message.");
	var secondRow = new Array("Open the message in full window.", "Open the message.", "Open the message.", "Right click on the message.", "Click the down arrow, next to the \"Reply\" button on the top.", "Right-click on the message.");
	var thirdRow = new Array("Click \"Options\" in the \"View\" menu.", "\"File\" menu -&gt; \"Properties\" -&gt; \"Details\" tab -&gt; \"Message source\".", "Click \"Headers\" in the \"View\" menu, then select \"All\".", "Click \"Show full header\".", "Click \"Show original\".", "Click \"View source\".");
	var index = document.getElementById("eclient").value;
	if (index > -1 && index < 10)
	{
		document.getElementById("i1").innerHTML = "1. " + firstRow[index];
		document.getElementById("i2").innerHTML = "2. " + secondRow[index];
		document.getElementById("i3").innerHTML = "3. " + thirdRow[index];
		document.getElementById("i4").innerHTML = "4. Copy the e-mail header and paste it in the textarea below.";
	}
}
function goBunny(what, who, w, h)
{
	var offsetTop = (screen.height - screen.availHeight) + Math.round((screen.height - h) / 2);
	var offsetLeft = (screen.width - screen.availWidth) + Math.round((screen.width - w) / 2);
	window.open(what, who, 'width=' + w + ',height=' + h + ',left=' + offsetLeft + ',top=' + offsetTop + ',directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=yes,toolbar=no');
}
function showMap()
{
	goBunny("popups/tracer_en.php", "email_location", 450, 515);
	document.getElementById("h_form").target = "email_location";
	document.getElementById("h_form").submit();
}
