function popMini(pop_url)
{
	mini_window = window.open (pop_url,"mini","width=330,height=200,status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=0");
	mini_window.focus();
}
function ringtoneplay(id, tipo)
{
	var pop_url			= "player.php?id="+escape(id)+"&tipo="+escape(tipo);

	popMini(pop_url);
}
function friendsend(id, tipo)
{
	var pop_url			= "player.php?id="+escape(id)+"&tipo="+escape(tipo);

	popMini(pop_url);
}
function refreshImages()
	{
			var new_url = new String("include/captcha.php?action=verificationcode;rand=a481084e401f04a13599ae8827573e80");
		new_url = new_url.substr(0, new_url.indexOf("rand=") + 5);

		var hexstr = "0123456789abcdef";
		for(var i=0; i < 32; i++)
			new_url = new_url + hexstr.substr(Math.floor(Math.random() * 16), 1);
		document.getElementById("catpcha").src = new_url;
	}
	
