direccion = "http://www.torredonjimeno.net/img/postales/";
function imagenes() {
	x=1;
	document.write("<table width='95%' border=1>");
	for (t=1;t<=30;t++) {

		if (x==1) {document.write("<tr>");}
		document.write("<td align='center'><img src='"+direccion+"tn_"+t+".jpg' width='80' height='120'><br>");
            	document.write("<input type='radio' name='Imagen' value='"+t+".jpg'");
            	if (t==1) { document.write(" checked "); }
		document.write("></td>");
		if (x==5) {document.write("</tr>"); x=1;}
			else { x++;}
	}	
	document.write("</table>");
}

