function SpawnWindow_focus(img, x, y) {
	var ht = y+30;
	var wd = x+0;
	var options = "toolbar=no,menubar=no,scrollbars=no,resizable=yes,width=" + wd + ",height=" + ht;
	imgWindow=window.open(img,"",options);
	imgWindow.focus();
}


function SpawnPlayer_focus(player,mp3,name, x, y) {
	var ht = y+30;
	var wd = x+0;
	var options = "toolbar=no,menubar=no,scrollbars=no,resizable=yes,width=" + wd + ",height=" + ht;
	var url = player+"?track="+mp3+"&title="+name;
	playerWindow=window.open(url,"",options);
	playerWindow.focus();
}