<!--

function openFullscreenPopup(lang) {
	
	popup_src			= "goldvish.php?lang=" + lang;
	popup_target		= "_blank";
	
	if (screen.width < 1000) {
		popup_width		= 780;
		popup_height	= 520;
	} else {
		popup_width		= screen.availWidth - 10;
		popup_height	= screen.availHeight - 20;
	}
	
	popup_settings		= "width=" + popup_width + ",height=" + popup_height + ",left=" + ((screen.availWidth - popup_width) / 2) + ",top=" + ((screen.availHeight - popup_height) / 2);
	
	popup_win			= window.open(popup_src, popup_target, popup_settings);
}

function closePopup() {
	window.opener	= 'me';
	parent.window.close();
}

//-->