/* Copyright (c)2000 Louis Jean-Richard, Switzerland. All Rights Reserved. */
//	-----------------------------------
function                                 Quoted(s){
	return '"' + s + '"'
}
//	-----------------------------------
function OpenScore(name)
{
var	sibelius = Quoted("http://www.sibelius.com/cgi/plugin.pl")
var	scoreURL = "../aa/sound1/" + name + ".sib"
var	windowWidth = "width=800"
var	windowHeight = "height=546"
var	output = "<html><body>"
	output += "<embed src=" + Quoted(scoreURL)
	output += " type='application/x-Sibelius-Score'"
	output += " " + windowWidth + " " + windowHeight
	output += " alt=" + Quoted(name + ".sib")
	output += " codebase=" + sibelius
	output += " pluginspage=" + sibelius
	output += "><\/body><\/html>"
var	scoreWindow = window.open("", "PlayScore", windowWidth + "," + windowHeight)
	scoreWindow.document.open();
	scoreWindow.document.write(output)
	scoreWindow.document.close()
}
//	-----------------------------------
