<!--
function openwindow(url, width, height) {
	var win_ops="toolbar=no,locaiton=no,status=yes,scrollbars=yes,"+
				"resizeable=no,width="+width+",height="+height;
	var genwin = open(url, '_new', win_ops);
	genwin.focus();
}
function intlnote() {
	var win_ops="toolbar=no,locaiton=no,status=yes,scrollbars=yes,"+
				"resizeable=no,width=400,height=400";
	var notewin = open('/intlnote.cfm', '_new', win_ops);
	notewin.focus();
}
function ponote() {
	var win_ops="toolbar=no,locaiton=no,status=yes,scrollbars=yes,"+
				"resizeable=no,width=400,height=250";
	var notewin = open('/purchase_order.cfm', '_new', win_ops);
	notewin.focus();
}
function showspec(itm_id) {
	var win_ops="toolbar=no,locaiton=no,status=yes,scrollbars=yes,"+
				"resizeable=no,width=680,height=450";
	var notewin = open('/showspec.cfm?itm_id='+itm_id, '_new', win_ops);
	notewin.focus();
}
function showds(itm_id) {
	var win_ops="toolbar=no,locaiton=no,status=yes,scrollbars=yes,"+
				"resizeable=no,width=720,height=650";
	var notewin = open('/showds.cfm?itm_id='+itm_id, '_new', win_ops);
	notewin.focus();
}
function bordercolor(id, color) {
	if (document.layers || document.getElementById) {
		var st=document.getElementById(id);
		st.style.borderColor= 'blue';
	}
}
function cidhelp() {
	var win_ops="toolbar=no,locaiton=no,status=yes,scrollbars=yes,"+
				"resizeable=no,width=400,height=400";
	var notewin = open('cidhelp.cfm', '_new', win_ops);
	notewin.focus();
}
//-->
