function Publicidad()
{
	this.texto;
	this.website;
	this.className = (this.className) ? this.className : "playlist_titulos";
	this.linkClassName = (this.linkClassName) ? this.linkClassName : "link"; 
	
	this.construir = function(elementoPadre)
	{
		var div = cE("div", elementoPadre)
		div.style.paddingTop = 15;
		div.className = this.className;
		div.innerHTML = this.texto;
		
		var div = cE("div", elementoPadre)
		div.style.paddingTop = 4;
		
		var a = cE("a", div);
		a.href = "http://" + this.website;
		a.innerHTML = this.website;
		a.className = this.linkClassName;
		a.style.textDecoration = "none";
		a.target = "_blank";
	}
}

function Tienda()
{
	this.texto;
	this.website;
	this.href;
	this.img;
	this.className = (this.className) ? this.className : "playlist_titulos";
	this.linkClassName = (this.linkClassName) ? this.linkClassName : "link"; 
	
	this.construir = function(elementoPadre)
	{
		var tbody = crearTabla(elementoPadre)
		
		var tr = cE("tr", tbody);
		
		var td = cE("td", tr);
		
		var width = 50;
		var height;
		var widthP;
		
		var img = cE("img", td);	
		img.style.paddingTop = 15;
		img.src = this.img;		
		img.style.width = width;
		
		if(img.width > width)
		{
			widthP = (100*width)/img.width;	
			
			height = (img.height*widthP) / 100;					
			
			img.style.height = height;
		}
		
		var td = cE("td", tr);
		td.style.paddingLeft = 20;
		
		var div = cE("div", td)
		div.style.paddingTop = 15;
		div.className = this.className;
		div.innerHTML = this.texto;
		
		var div = cE("div", td)
		div.style.paddingTop = 4;
		
		var a = cE("a", td);
		a.href = this.href;
		a.innerHTML = this.website;
		a.className = this.linkClassName;
		a.style.textDecoration = "none";
		a.target = "_blank";
	}
}
