function h2o_freq(appid){
var text = "<form>";
text += '<select onChange="setviboptions(this.value,'+appid+')" id="vib_select_'+appid+'" size="4" >';
text += ' <option value="offvib" selected>No vibrations selected</option>';
text += ' <option value=1 >N1 A1 1713.782</option>';
text += ' <option value=2 >N2 A1 3729.281</option>';
text += ' <option value=3 >N3 B2 3850.656</option>';
text += '</select></form>';
document.write(text);
var text = '<form><input type="button" value="View IR Spectrum" id="vibspec_button_'+appid+'" onClick="openirspectrum('+appid+',\'';
text += '1713.7819&';
text += '3729.2814&';
text += '3850.6558';
text += '\',\'';
text += '75.6553&';
text += '1.691&';
text += '19.2216';
text += '\')">';
text += "</form>";
document.write(text);
}
