function MuestraDificultad(imagen, dificultad) {
	for (var x = 0; x < dificultad; x++) document.write('<img src="/images/' + imagen + '_on.gif" width="13" height="15" border="0">')
 	for (var y = 0; y < 5 - dificultad; y++) document.write('<img src="/images/' + imagen + '_off.gif" width="13" height="15" border="0">')
}

function PaginaPersonal( pagper ) {
	if ( pagper != 'No tiene / no suministrada' && pagper != 'www.elcodigo.com' )
		document.write( '<p>Página personal del autor:<br><a href="http://' + pagper + '" target="_blank">' + pagper + '</a></p>' )
}

function verFuente( idCuadro ) {
	var cuadroObj = document.getElementById( idCuadro )
	var codigo = cuadroObj.value 
	var ventana = window.open('', '_blank', 'width=750, height=400, location=0, resizable=1, menubar=0, scrollbars=0')
	ventana.document.write('<html><head><title>Ver código fuente</title></head><body onLoad="document.ver.codigo.select()"><form name="ver"><textarea name="codigo" rows="22" style="width:99%;height:99%;overflow:scroll;">' + codigo + '</textarea></body>')
	ventana.document.close()
}
