playerwin=null;
function openPlayer(id)
{
//  	alert(id);
	if(playerwin!=null)
	{
// 		alert(playerwin.closed());
		playerwin.focus();
	}
	else
	{
		if (id > 0){
 			playerwin=window.open("../globals/player.php?trackid="+id,"player", "width=450,height=120,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes");
 		}else{
			playerwin=window.open("../globals/player.php","player", "width=450,height=120,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes");
		}
	}
}

function a()
{
// 	alert("zu");
}


