function OpenWindowNew(direction_window,name_window,properties_window)
{
	CurrentWindowOpen = open(direction_window,name_window,properties_window);
}
function ShowPopupWindow( sUrl )
{
	window.open(sUrl, '_blank', 'width=400,height=200,resizable=no', false);
}
function CountryOpen(country)
{
	if(window.opener && !window.opener.closed)
	{
		//window.opener.document.FormCountryRegistration.action = country;
		//window.opener.document.FormCountryRegistration.submit();
		window.opener.open(country, '_self');
		window.close();
	}
}