<html>

unction openWin() {

<script>

var tags = '<center><embed src="mySong.mp3" height=100 width=100 NOJAVA=true CONTROLS=All center=true CONSOLE=one></embed>'
var height = 245
var width = 245
var newWin = window.open('','real_one','height=200, width=200,toolbar=no,scrollbars=no,menubar=no')
newWin.document.write("<html><head><title>RealOne Player</title></head><body>")
newWin.document.write(tags)
newWin.document.write("</body</html>")
newWin.resizeTo(height,width)
var y = (screen.height - height) / 2
var x = (screen.width - width) / 2
newWin.moveTo(x,y)
newWin.focus()
newWin.document.close()

</script>
}

 

</html>