/*************************
 Proximamente en Gdgames
*************************/

var img="http://www.gdgames.com.mx/media/box/small/CDSOON.jpg"; // Imagen del juego
var url="http://www.gdgames.com.mx/store/soon.html"; // URL
var title="Assassin's Creed II"; // Nombre del juego

document.write("<p>");

// Insertar imagen con enlace
document.write("<a href='"+url+"'>");
document.write("<img src='"+img+"' alt='"+title+"' title='"+title+"' />");
document.write("</a><br />");

// Insertar el nombre del juego con enlace
document.write("<a href='"+url+"'>");
document.write(title);
document.write("</a>");

document.write("</p>");