function artistPopup(seconds, img, width, height, position)
	{
	preloadArtist = new Image();
	preloadArtist.src = img;
	setTimeout("popupArtist('"+img+"',"+width+","+height+",'"+position+"')", seconds*1000);
	}

function popupArtist(img, width, height, position)
	{
	artistInWindow = window.open("../popup.php?img="+img+"&position="+encodeURIComponent(position)+"&width="+width+"&height="+height , Math.round(Math.random()*100000), "scrollbars=no,resizable=yes,width="+width+",height="+height);
	}