function setGamesForm(fid, ftop, fleft, fgamecode) {	
	var fid = fid;
	var ftop = ftop;
	var fleft = fleft;
	$(".gamesItemText").css("visibility", "visible");
	$(".gamesItemDownload").css("visibility", "visible");
	$("#gamesItem_"+fid+" .gamesItemText").css("visibility", "hidden");
	$("#gamesItem_"+fid+" .gamesItemDownload").css("visibility", "hidden");
	$("#gamesFormContainer").css("visibility", "visible");
	$("#gamesFormContainer").css("top", ftop+"px");
	$("#gamesFormContainer").css("left", fleft+"px");
	$("#gPhoneName").attr("value", fid);
	$("#captchagame").attr("value", "Enter code above");
	
	document.gamesGoMobileForm.gameName.value = fgamecode;	
}

function fillCountryCode(fselect, finput) {
	var iSelected = fselect.selectedIndex;
	var mobileInput = document.getElementById(finput);
	mobileInput.value = '+' + fselect.options[iSelected].value;
}

function clearInput(finput) {
	finput.value = "";
}