
function openMusicBox() {
		
		var theURL 		= "/musicbox.asp"
//		alert(theURL)
		var winName		= ","
		var features	= "width=275,height=290"
		
		var winl = (screen.width  -220) / 2;
		var wint = (screen.height -200 ) / 2;
		features += ' top='+wint+',left='+winl+',noresize'
		window.open(theURL,'',features);
}