// new window with audio src
// pic is cover - tt is title
function popaud(src, tt) {
// ctrl width = 400
// ctrl height = 16
// winheight += 40 for title
	var w = 400;
	var h = 16;
	var ww = w + 40;
	var wh = h + 40;
	window.open('/popaud.php?src='+src+'&w='+w+'&h='+h+'&tt='+tt,  "win1" , 'width='+ww+',height='+wh+',locationbar=false');
}

