// JavaScript Document
function feedbackbox() {
	var path = window.location.pathname;
	var url = '/bs/onlineforms/feedback.asp?ref=' + path;
	var newwindow = window.open(url,'feedbackwindow','width=580,height=550,scrollbars=0');
	newwindow.moveTo(310,200);
	if (window.focus) {newwindow.focus()}
	return false;
}
