function popWindow(imgsrc,w,h,text) {
  myWin= open("", "displayWindow", "width=" + w +",height=" + h +",status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
	
 myWin.document.open();
  
myWin.document.write("<html><body bgcolor=white marginheight=0 topmargin=3>");
myWin.document.write("<div style='font-family:courier;font-size:12px;font-weight:bold;color:#444'>");
myWin.document.write("<div align=left><a href=javascript:window.close()>Close window</a></div><br>");


myWin.document.write("<img src='demos/Straight%20Out%20Of%20Babylon.mp3'><br>");
myWin.document.write(text);

myWin.document.write("</div>");
myWin.document.write("</body></html>");
 myWin.document.close(); 
 
}