var GreetBeatz = function(id, host, song_id, title) {
	this.render = function() {
		var div = document.getElementById(id);
		if (div) {
			var height = '100';
			var width  = '400';
			var src    = "http://" + host + "/songs/" + song_id + "/widget?title=" + title
			div.innerHTML = "<iframe src=\"" + src +"\" width=\"" + width + "\" height=\"" + height + "\" marginwidth=\"0\" marginheight=\"0\" hspace=\"0\" vspace=\"0\" frameborder=\"0\" allowtransparency=\"true\" scrolling=\"no\" ></iframe>";
			div.style.width = width + 'px';
			div.style.height = height + 'px';
		}
	}
}
