//  pass the url  and  optionally a width, height, and window name
function spawnWindow(url,name,w,h){
	if(w == undefined) w = 320;
	if(h == undefined) h = 240;
	if(name == undefined) name = "popWindow";
	var newWindow = window.open(url,name,"toolbar=0,scrollbars=1,resizable=1,width="+w+",height="+h+"\"");		
}

function spawnJukeBox(){
	var newWindow = window.open('/wp-content/themes/marx_site_09/audio_player/listen.php','jb',"toolbar=0,scrollbars=1,resizable=1,width=450,height=230");		
}

