function soundwin(soundtitle, soundfile) {
	this.document.sndinputform.sndtitle.value = soundtitle;
	this.document.sndinputform.sndfile.value = soundfile;
	var sndWin = window.open("soundsample.shtml", "SoundSamplePlayer","left=20,top=20,width=885,height=250,toolbar=no,resizable=no,status=no,menubar=no,scrollbars=no,location=no");
	sndWin.focus();
}

function soundwinclose() {
	window.close();
}
