function popUpVideoWindow(theURL,width,height,left,top){
	mywindow=window.open(theURL,"audioPlayer","width="+width+",height="+height+",location=no,status=no,menubar=no,scrollbars=no,resizable=no");
mywindow.moveTo(left,top);
}
