function ShowContact()
{
	if (document.getElementById("international").options[document.getElementById("international").selectedIndex].value != "")
	{
		var url="salesrepwindow.cfm?Map=4&MapPosition=" + document.getElementById("international").options[document.getElementById("international").selectedIndex].value;
		makeRequest(url);
		return;
	}
}

if (typeof document.getElementById("international").addEventListener != "undefined")
{ document.getElementById("international").addEventListener("change",ShowContact,false); }

if (typeof document.getElementById("international").attachEvent != "undefined")
{ document.getElementById("international").attachEvent("onchange",ShowContact); }
