// BEGIN STANDARD JAVASCRIPT

openPopUp('music/playinterface.html', 200, 175)

function openPopUp(sourcefile, w, h) 
 { 
 newWin = window.open(sourcefile,"menu1","status=no,menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,width="+w+",height="+h+",screenX=100,screenY=100,left=150,top=300");
 newWin.focus 
 }
