var win;

function getcountry()
{
	if(document.calc)
	{
		if(document.calc.To.options[document.calc.To.selectedIndex].value == 1)
		{
			document.tickler.strCountry.value = document.calc.Convert.options[document.calc.Convert.selectedIndex].value
		}else if(document.calc.Convert.options[document.calc.Convert.selectedIndex].value == 1){
			document.tickler.strCountry.value = document.calc.To.options[document.calc.To.selectedIndex].value
		}else{
			document.tickler.strCountry.value = document.calc.To.options[document.calc.To.selectedIndex].value
		}
	}
}

function getCompanyInfo()
{
	if(document.tickler.CompanyID.value == "")
	{
		document.tickler.CompanyID.value = CompanyID
		document.tickler.WebUserID.value = UserID
	}

}

function openwin()
{
	getCompanyInfo()
	getcountry()
	win = window.open("", "Details", "width=500, height=520, scrollbars")
	document.tickler.submit();
}
