function popwin(url, width, height){
	var attributes = "width=" + width + ",height=" + height + ",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no";
	newwindow=window.open(url,'newwin',attributes);
	if (window.focus) {newwindow.focus()}
	return false;
}