// JavaScript Document
function move()
{
	txt=document.forms[0].myList.options[document.forms[0].myList.selectedIndex].value
//document.write(txt)
	if( txt == 1)
		window.location ="../australia"
	else if ( txt == 2)
		window.location ="../austria"
	else if ( txt == 3)
		window.location ="../belgium"	
	else if ( txt == 4)
		window.location ="../brazil"	
	else if ( txt == 5)
		window.location ="../canada"	
	else if ( txt == 6)
		window.location ="../chile"
	else if ( txt == 7)
		window.location ="../china"	
	else if ( txt == 8)
		window.location ="../costarica"
	else if ( txt == 9)
		window.location ="../czechrepublic"
	else if ( txt == 10)
		window.location ="../denmark"
	else if ( txt == 11)
		window.location ="../egypt"
	else if ( txt == 12)
		window.location ="../finland"
	else if ( txt == 13)
		window.location ="../france"
	else if ( txt == 14)
		window.location ="../germany"	
	else if ( txt == 15)
		window.location ="../greece"
	else if ( txt == 16)
		window.location ="../india"	
	else if ( txt == 17)
		window.location ="../ireland"
	else if ( txt == 18)
		window.location ="../italy"
	else if ( txt == 19)
		window.location ="../japan"
	else if ( txt == 20)
		window.location ="../mexico"
	else if ( txt == 21)
		window.location ="../newzealand"
	else if ( txt == 22)
		window.location ="../netherlands"
	else if ( txt == 23)
		window.location ="../portugal"
	else if ( txt == 24)
		window.location ="../russia"	
	else if ( txt == 25)
		window.location ="../southafrica"
	else if ( txt == 26)
		window.location ="../southkorea"	
	else if ( txt == 27)
		window.location ="../spain"
	else if ( txt == 28)
		window.location ="../sweden"
	else if ( txt == 29)
		window.location ="../uk"
	else if ( txt == 30)
		window.location ="../usa"
	

}
