// JavaScript Document


SSPOTY = {
	author : "&lt;no author&gt;",
	genre : "&lt;no genre&gt;",
	title : "&lt;no title&gt;",
	tracks : "0",
	thumb : "http://socialspoty.com/img/noimage.jpg",
	buttonimg : "http://socialspoty.com/img/widgetbutton.png",
	url : "http://socialspoty.com/show.php?key=",
	init : function(key){
		
		
		document.write('<div onmouseover="document.getElementById(\'butn\').style.display = \'\';" onmouseout="document.getElementById(\'butn\').style.display = \'none\';" onclick="window.open(\''+this.url+key+'\');" style="font-family:Verdana, Geneva, sans-serif;font-size:12px;cursor:pointer;width:380px;border:1px solid #ccc;background-color:#fff;padding:0px;margin:0px auto;clear:both;padding:10px;position: relative;-moz-border-radius:10px;-webkit-border-radius:10px;">');
			document.write('<img src="'+this.thumb+'" style="float:left;margin-right:10px">');
			document.write('<div style="float:right;width:269px;">');
				document.write('<span style="font-weight:bold">Playlist: '+this.title+'</span>');
				document.write('<br><span style="font-size:10px;color:#999">Author: '+this.author+'</span>');
				document.write('<br><span style="font-size:10px;color:#999">'+this.tracks+' tracks </span>');
				document.write('<br><span style="">'+this.genre+'</span>');
			document.write('</div>');
			document.write('<div style="clear:both"></div>');
			document.write('<div style="position:absolute; bottom:10px;right:10px;"><img id="butn" style="display:none" src="'+this.buttonimg+'"></div>');
		document.write('</div>');
		document.write('');

		
		
		}
};


