// funzioni per la condivisione di un gioco
function CondivExt(){
	
	block = "<form name=\"frmCondiv\" class=\"frmnull\">";
	block = block + "<table id=\"tab-condiv\"><tr><td>Dove inserirai il gioco:</td><td>Copia il codice sottostante:</td></tr>";
	block = block + "<tr><td valign=\"top\"><select name=\"selectTypeCondiv\" onchange=\"PasteCode( this.value );\"><option value=\"1\" selected=\"selected\">Condividi su un Blog</option><option value=\"2\">Condividi su un Forum</option></select><br /><br />(<a href=\"javascript:void(0);\" onclick=\"RiduciBox()\">chiudi</a>)</td>";
	block = block + "<td><textarea style=\"width: 250px;\" name=\"txtareaCode\"></textarea></td></tr></table></form>";
	
	document.getElementById('td-estensione').innerHTML = block;
	PasteCode(1);

}

function PasteCode(type){
	
	if(type == 1){
		
		code = "";
		code = code + "<strong>" + nomegame + "</strong>\n";
		code = code + "<em>" + descgame + "</em>\n";
		code = code + "<a href=\"http://www.rexbin.com/giochi/" + urlgioco + "\">\n";
		code = code + "<img src=\"http://www.rexbin.com/images/btn-gioca-giochi.png\" title=\"Gioca a " + nomegame + "\" alt=\"" + nomegame + "\" />\n</a>";
		
	}
	
	if(type == 2){
		
		code = "";
		code = code + "[b]" + nomegame + "[/b]\n[i]" + descgame + "[/i]\n[img]http://www.rexbin.com/files/" + idgame + "/img.jpg[/img]\n[url=http://www.rexbin.com/giochi/" + urlgioco + "][u][b]Gioca Ora![/b][/u][/url]";
		
	}
	
	document.forms['frmCondiv'].txtareaCode.innerHTML = code;

}