// JavaScript Document
function redirect(where)
{
	if (where.length > 1)
	{
		document.getElementById('country_form').action=where; 
		document.getElementById('country_form').submit();		
	}
}

function redirectAndResize(where)
{
	if (where.length > 1)
	{
		window.resizeTo(800,600);
		document.getElementById('country_form').action=where; 
		document.getElementById('country_form').submit();				
	}
}
