function Enlace(href, innerHTML, classCSS, style, title)
{
	this.href = href;
	this.innerHTML = innerHTML;
	this.classCSS = classCSS == null ? "" : classCSS;
	this.style = style == null ? "" : style;
	this.title = title == null ? "" : title;
	this.GetEnlace = function()
	{
		var enlace = '<a href="'+this.href+'"';
		if(this.classCSS.length > 0){enlace += ' class="'+this.classCSS+'"';}
		if(this.style.length > 0){enlace += ' style="'+this.style+'"';}
		if(this.title.length > 0){enlace += ' title="'+this.title+'"';}
		return enlace+'>'+this.innerHTML+'</a>';
	}
	this.Clonar = function()
	{
		return new Enlace(this.href,this.innerHTML,this.classCSS,this.style,this.title);
	}
}
