function ShiftFocus(event, ctl)
{
	if (event.keyCode == 13) 
	{
		if(ctl!='')	
		{
			document.getElementById(ctl).focus();
			document.getElementById(ctl).click();
			return true;
		}
	}
}

function requestUrl(ctl)
{
	var option;
	
	if(ctl=='')
	{
		return false;
	}
	var element = document.getElementById(ctl);
	if (!element)
	{
		return false;
	}
	for(var i=0; i<element.options.length; i++)
	{
		if(element.options[i].selected)
		{
			option = element.options[i].value;
		}
	}

	if(option == 'int')
	{
		document.location.href='http://www.img.com';
	}
	if(option == 'de')
	{
		document.location.href='http://www.img.ch';
	}
	if(option == 'pl')
	{
		document.location.href='http://www.img.pl';
	}
	if(option == 'ja')
	{
		document.location.href='http://www.img-j.co.jp';
	}
	if(option == 'zh')
	{
		document.location.href='http://www.imgchina.com.cn';
	}
	if(option == 'ro')
	{
		document.location.href='http://www.img.com';
	}
	if(option == 'ru')
	{
		document.location.href='http://www.img-russia.ru';
	}
	if(option == 'ax')
	{
		document.location.href='http://www.img-snt.ch';
	}
	
}